html {
    --primary-color: #e01783;
}

.fadeInUp {
    animation: fadeInUp 1.5s;
    -webkit-animation: fadeInUp 1.5s;
}

.fadeInDown {
    animation: fadeInDown 1.5s;
    -webkit-animation: fadeInDown 1.5s;
}

.fadeInLeft {
    animation: fadeInLeft 1.5s;
    -webkit-animation: fadeInLeft 1.5s;
}

.fadeInLeftFast {
    animation: fadeInLeft .5s;
    -webkit-animation: fadeInLeft .5s;
}

.fadeInRight {
    animation: fadeInRight 1.5s;
    -webkit-animation: fadeInRight 1.5s;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 17px, 0);
        transform: translate3d(0, 17px, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 17px, 0);
        -ms-transform: translate3d(0, 17px, 0);
        transform: translate3d(0, 17px, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -17px, 0);
        transform: translate3d(0, -17px, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -17px, 0);
        -ms-transform: translate3d(0, -17px, 0);
        transform: translate3d(0, -17px, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-17px, 0, 0);
        transform: translate3d(-17px, 0, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-17px, 0, 0);
        transform: translate3d(-17px, 0, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(17px, 0, 0);
        transform: translate3d(17px, 0, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(17px, 0, 0);
        transform: translate3d(17px, 0, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

.touming {
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 7px 50px;
    font-size: 16px;
    color: #fff;
    display: inline-block;
    margin-top: 30px;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}

.touming:hover {
    background: #fff;
    border: 1px solid #fff;
    color: black;
}

.toumingOrange {
    border: 1px solid #fff;
    border-radius: 18px;
    padding: 8px 25px;
    font-size: 14px;
    color: #fff;
    display: inline-block;
    margin-top: 30px;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}

.toumingOrange:hover {
    background: #fff;
    border: 1px solid #fff;
    color: var(--primary-color);
}

.Orangetouming {
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    padding: 6px 24px;
    font-size: 12px;
    color: var(--primary-color);
    display: inline-block;
    margin-top: 8px;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}

.Orangetouming:hover {
    background: var(--primary-color);
    color: #fff;
}

.OrangeText {
    color: #e07843;
    font-weight: bold;
}

.OrangeText:hover {
    text-decoration: underline;
}

.awardLine:after {
    content: url("../images/award-line.jpg");
}

.tabActive {
    color: var(--primary-color);
    position: relative;
}

.tabActive:after {
    content: "";
    width: 72px;
    height: 2px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 16px;
    left: 50%;
    margin-left: -36px;
}

.fixed {
    background: #ffffff;
    z-index: 99;
    -webkit-box-shadow: 0 0 5px darkgrey;
    -moz-box-shadow: 0 0 5px darkgrey;
    box-shadow: 0 0 5px darkgrey;
}

.header {
    width: 100%;
    /* padding: 10px 0; */
    position: fixed;
    top: 0;
    z-index: 99;
    transition: all 1.2s;
    -webkit-transition: all 1.2s;
    -moz-transition: all 1.2s;
    padding-top: 5px;
}

.header .header-nav {
    /* padding-top: 20px; */
    float: right;
    z-index: 200;
}

.header .nav-open {
    float: right;
    display: none;
}

.header .nav-open i {
    display: block;
    background-color: #fff;
    height: 2px;
    width: 25px;
    margin: 6px auto;
    border-radius: 50px;
}

.header .nav-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 100;
    display: none;
}

.header .header-nav .nav-ul>li {
    float: left;
    padding: 25px 24px;
    padding-top: 30px;
    color: #fff;
    position: relative;
}

.header .header-nav .nav-ul .search_li {
    padding-top: 23px;
    padding-right: 0px;
    padding-left: 15px;
}

.header .header-nav .search {
    position: relative;
    height: 37px;
    width: 37px;
    margin: 0 5px;
}

.header .header-nav .search .txt {
    position: absolute;
    width: 0px;
    right: 0px;
    top: 0px;
    background: #fff;
    border-radius: 20px;
    padding: 9px 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    color: #666;
}

.header .header-nav .search .but {
    background: url('../images/search.png') no-repeat center center;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 37px;
    height: 37px;
}

.header .header-nav .search.active .but {
    background: url('../images/search_m.png') no-repeat center center;
}

.header .header-nav .search.active .txt {
    opacity: 1;
    width: 240px;
    visibility: visible;
    font-size: 14px;
}

.header.fixed .header-nav .search .but {
    background: url('../images/search_hs.png') no-repeat center center;
}

.header.fixed .header-nav .search.active .but {
    background: url('../images/search_m.png') no-repeat center center;
}

.header.fixed .header-nav .search .txt {
    border: 1px solid #dedede;
}


.header .header-nav .nav-ul>li>a,
.header .header-nav .nav-ul>li>span {
    display: inline-block;
    vertical-align: middle;
    margin-right: 3px;
}



.header .header-nav .nav-ul li a.chinese {
    font-size: 16px;
}

.header .header-nav .nav-ul li .line {
    width: 1px;
    height: 15px;
    background-color: #fff;
    transition: all .6s;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
}

.header .header-nav .nav-ul>li.active>a {
    color: var(--primary-color) !important;
}

.header.fixed .header-nav .nav-ul>li.active>a {
    color: var(--primary-color) !important;
}

.header .header-nav .nav-ul>li>a {
    color: #fff;
    font-size: 18px;
    transition: all .6s;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
}




@media screen and (min-width: 1200px) {

    .header .header-nav .nav-ul>li:hover>a {
        color: var(--primary-color) !important;
    }

    .header.fixed .header-nav .nav-ul>li:hover>a {
        color: var(--primary-color) !important;
    }

    .header .header-nav .nav-ul>li .icon {
        display: none;
    }


    .header .header-nav .nav-ul li.zy {
        background: url('../images/head-lang-icon.png') no-repeat left 32px;
        padding-left: 25px;
        transition: all 0.6s;
        -webkit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        min-height: 19px;
        padding-right: 0px;
        margin-left: 15px;
    }

    .header.fixed .header-nav .nav-ul li.zy {
        background: url('../images/head-lang-icon1.png') no-repeat left 32px;
        padding-left: 25px;
    }

    .header .header-nav .nav-ul2 li a:hover {
        background: var(--primary-color);
        color: #fff;
    }

    .header .header-nav .nav-ul>li:hover .nav-ul2 {
        /* visibility: visible;
    opacity: 1; */
        display: block;
    }

    .header .header-nav .nav-ul2 li a {
        display: block;
        /* background: #0b426b; */
        font-size: 14px;
        color: #333;
        padding: 12px 0px;
        transition: all 0.6s;
        -webkit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        border-bottom: 1px solid #d9d9d9;
    }

    .header.fixed .header-nav .nav-ul2 li a {
        color: #333;
    }

    .header.fixed .header-nav .nav-ul2 li a:hover {
        color: #fff;
    }

    .header .header-nav .nav-ul2 {
        position: absolute;
        top: 72px;
        left: 0px;
        width: 100%;
        text-align: center;
        /* opacity: 0; overflow: hidden; visibility: hidden;  */
        display: none;
        background: #fff;
        border-top: 2px solid var(--primary-color);
    }


}


.header .header-nav .nav-ul li.zy:hover>a {
    color: #fff !important;
}

.header.fixed .header-nav .nav-ul li.zy:hover>a {
    color: #333 !important;
}

.header .header-nav .nav-ul li.zy a:hover {
    color: #e07843 !important;
}

.header.fixed .header-nav .nav-ul li.zy a:hover {
    color: #e07843 !important;
}



.ban-win-slider.slides li {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.ban-win-slider.slides li .text {
    padding: 0;
    height: 100%;
    margin: 0 auto;
    color: #fff;
    text-align: center;
}

.ban-win-slider.slides li .text .middle-div {
    padding-top: 18%;
}

.ban-win-slider.slides li .text .banner-title {
    font-size: 70px;
    font-weight: bold;
    text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5);
    letter-spacing: .1em;
}

.con-da {
    font-size: 86px !important;
}

.ban-win-slider.slides li .text .pg-banner-title {
    font-size: 52px;
}

.ban-win-slider.slides li .text .description {
    font-size: 68px;
    text-transform: uppercase;
    padding-top: .6em;
    font-family: 'Arial Narrow';
    /* line-height: 1.4em; */
    /* height: 2em; */
    overflow: hidden;
    text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5);
    letter-spacing: .1em;
}

.ban-win-slider.slides li .text .toumingOrange {
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 30px;
}


.win-slider li .pg-banner-title {
    font-size: 36px;
    font-weight: bold;
    text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5);
    color: #fff;
    letter-spacing: 4px;
}

.win-slider li .description {
    color: #fff;
    text-transform: uppercase;
    font-family: 'Arial Narrow';
    font-size: 26px;
    margin-top: 18px;
}



.index-banner .slides li .text .btn-div {
    padding-top: 26px;
}

.index-banner .slides li .text .bottom-div {
    text-align: center;
}

.index-banner .slides li .text .bottom-div .data-div {
    display: inline-block;
    margin: 0 auto;
    padding-top: 10%;
    text-align: left;
}

.index-banner .slides li .text .bottom-div .data-div .smdiv {
    color: #ffffff;
    font-size: 24px;
    padding: 0 48px;
    position: relative;
    float: left;
}

.index-banner .slides li .text .bottom-div .data-div .smdiv.line:after {
    content: '';
    width: 1px;
    height: 74px;
    background-color: #fff;
    opacity: 0.3;
    filter: alpha(opacity=30);
    position: absolute;
    top: 10px;
    right: 0;
}

.index-banner .slides li .text .bottom-div .data-div .smdiv .up {
    width: 100%;
    height: 60%;
}

.index-banner .slides li .text .bottom-div .data-div .smdiv .up strong {
    font-size: 42px;
    padding-right: 6px;
    font-weight: 200;
}

.index-banner .slides li .text .bottom-div .data-div .smdiv .down {
    font-size: 20px;
    padding-top: 12px;
}

.index-product-service {
    padding: 100px 0;
}

.index-product-service .row {
    margin: 0 -35px;
    padding-top: 41px;
}

.index-product-service .row .col-bg-3 {
    padding: 0 10px;
    height: 305px;
    text-align: center;
    margin-top: 17.5px;
}


.index-product-service .row .zcol-bg-5 {
    width: 20%;
}

.index-product-service .row .zcol-bg-3 {
    width: 33.33%;
    margin-top: 17.5px;
}


.index-product-service .row .col-bg-3 .item {
    position: relative;
    background-size: cover !important;
    height: 100%;
    overflow: hidden;
    box-shadow: 0px 0px 20px -6px rgba(0, 0, 0, 0.3);
}

.index-product-service .row .col-bg-3 .wide-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-transition: all ease 1s;
    -moz-transition: all ease 1s;
    -ms-transition: all ease 1s;
    -o-transition: all ease 1s;
    transition: all ease 1s;
}

/* .index-product-service .row .col-bg-3:hover .wide-container {
    top: -100%;
}

.index-product-service .row .col-bg-3:hover .hover-div {
    top: 0;
} */





.index-product-service .row .col-bg-3 .wide-container .icon {
    padding: 30px 0;
}

.index-product-service .row .col-bg-3 .wide-container .icon img {
    margin: 0 auto;
}


.index-product-service .row .col-bg-3 .wide-container h5 {
    font-size: 24px;
    color: #ffffff;
    /* padding-top: 45px; */
}

.index-product-service .row .col-bg-3 .wide-container .yellowLine {
    width: 30px;
    height: 2px;
    margin: 19px auto 0;
}


.index-product-service .row .col-bg-3 .hover-div {
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 50%;
    color: #ffffff;
    /*     -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s; */
    padding: 0px 60px 0;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    z-index: 9;
}



.index-product-service .row .col-bg-3 .hover-div h4 {
    font-size: 24px;
    transition: all .4s linear;
    /* opacity: 0; */
}





@media screen and (min-width: 1201px) {

    /* .index-product-service .row .col-bg-3:hover .hover-div h4 { opacity: 1; transition: all .2s linear 0s;  } */
    .index-product-service .row .col-bg-3 .hover-div .whiteLine {
        opacity: 0;
        transition: all .2s linear;
    }

    /* .index-product-service .row .col-bg-3:hover .hover-div .whiteLine { opacity: 1; transition: all .2s linear 0s;  } */
    .index-product-service .row .col-bg-3 .hover-div p {
        transition: all .2s linear;
        /* opacity: 0;  */
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        font-size: 15px;
    }

    /* .index-product-service .row .col-bg-3:hover .hover-div p { opacity: 1; transition: all .2s linear .2s; } */
    .index-product-service .row .col-bg-3 .hover-div .btn-div {
        transition: all 0s linear;
        /* opacity: 0;  */
    }

    /* .index-product-service .row .col-bg-3:hover .hover-div .btn-div { opacity: 1; transition: all 0s linear .4s; } */

    .index-product-service .row .col-bg-3 .wide-container {
        background: url('../images/in_1.png') repeat-x left bottom;
        bottom: 0px;
    }

    .index-product-service .row .col-bg-3 .wide-container h5 {
        position: absolute;
        bottom: 40px;
        left: 0px;
        width: 100%;
    }

    .index-product-service .row .col-bg-3 .hover-div .icon {
        text-align: center;
        margin-top: 50px;
        margin-bottom: 20px;
        transition: all .4s linear;
    }

    .index-product-service .row .col-bg-3 .hover-div .icon img {
        display: inline-block;
        height: 40px;
    }

    /* .index-product-service .row .col-bg-3:hover .hover-div .icon { margin-top: 40px; opacity: 1; } */


    /* .index-product-service .row .col-bg-3:hover .wide-container .icon { margin-top: 50px;  } */
    .index-product-service .row .col-bg-3 .wide-container {
        opacity: 1;
    }

    .index-product-service .row .col-bg-3:hover .wide-container {
        opacity: 0;
        transition: all 0s linear 0s;
    }

    .index-product-service .row .col-bg-3 .item {
        position: relative;
    }

    .index-product-service .row .col-bg-3 .item:after {
        content: '';
        background: var(--primary-color);
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        opacity: 0;
        filter: alpha(opacity=0);
        transition: all 0.4s;
        -webkit-transition: all 0.4s;
    }

    .index-product-service .row .col-bg-3:hover .hover-div {
        opacity: 1;
        filter: alpha(opacity=1);
        top: 0px;
    }

    .index-product-service .row .col-bg-3:hover .item:after {
        opacity: 1;
        filter: alpha(opacity=1);
    }



}


.index-product-service .row .col-bg-3 .hover-div .whiteLine {
    width: 30px;
    height: 2px;
    margin: 26px auto 20px;
}

.index-product-service .row .col-bg-3 .hover-div p {
    line-height: 26px;
}

.index-product-service .row .col-bg-3 .hover-div .btn-div {
    width: 100%;
    text-align: center;
}

.index-news {
    padding: 100px 0;
}

.index-news .amore {
    text-align: right;
}

.index-news .amore a {
    text-align: right;
    color: #fff;
    font-size: 16px;
}

.index-news .amore a:hover {
    text-decoration: underline;
}


.index-news .container-index>.row {
    padding-top: 58px;
}

.index-news .index-title-wrap {
    color: #fff;
}

.index-news .index-title-wrap .whiteLine {
    width: 36px;
    height: 3px;
    margin: 26px auto 22px;
}

.index-news .news-banner-box {
    width: 52.77777%;
}

.index-news .news-banner-box .bottom-banner {
    max-height: 492px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
}

.index-news .news-banner-box .bottom-banner img {
    width: 100%;
}

.index-news .news-banner-box .bottom-banner .title-container {
    position: absolute;
    bottom: 0px;
    left: 0;
    color: #fff;
    padding-left: 32px;
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    padding: 10px 30px;
    padding-top: 12px;
}

.index-news .news-banner-box .bottom-banner .title-container h3 {
    font-size: 18px;
    color: #fff;
}

.index-news .news-banner-box .bottom-banner .title-container p {
    padding-top: 12px;
    color: #fff;
}

.index-news .news-banner-box .index-news-banner .flex-control-nav {
    text-align: right;
    padding-right: 20px;
}

.index-news .news-banner-box .index-news-banner .flex-control-nav li {
    margin: 0 5px;
}

.index-news .news-list {
    width: 47.222%;
    padding-left: 40px;
    margin-top: -17px;
}

.index-news .news-list .item {
    display: block;
    padding: 16px 0;
    color: #fff;
    border-bottom: 1px solid #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.index-news .news-list .item:hover .col-bg-9 .title {
    color: var(--primary-color);
    text-decoration: underline;
}

.index-news .news-list .item .col-bg-3 {
    padding-right: 18px;
    padding-left: 0px;
    width: 19%;
}

.index-news .news-list .item .col-bg-9 {
    width: 81%;
}


.index-news .news-list .item .col-bg-9 .title {
    font-size: 18px;
    /* padding: 8px 0; */
    -webkit-transition: all ease 1s;
    -moz-transition: all ease 1s;
    -ms-transition: all ease 1s;
    -o-transition: all ease 1s;
    transition: all ease 1s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.index-news .news-list .item .col-bg-9 p {
    font-size: 14px;
    padding: 10px 0 16px;
}

.index-news .news-list .item .col-bg-9 .description {
    font-size: 14px;
    height: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}



/* -- */
.news-con-box {
    padding-bottom: 100px;
}

.news-con {
    padding-top: 80px;
}

/* .news-con .amore  { text-align: right; }
.news-con .amore a { text-align: right; color: #fff; font-size: 16px; }
.news-con .amore a:hover { text-decoration: underline; }
 */

.news-con .page-title {
    position: relative;
}

.news-con .page-title .amore {
    position: absolute;
    right: 0px;
    bottom: 0px;
    top: 20%;
}

.news-con .page-title .amore a:hover {
    color: #dd692f;
    text-decoration: underline;
}

.news-con .index-title-wrap {
    color: #fff;
}

.news-con .index-title-wrap .whiteLine {
    width: 36px;
    height: 3px;
    margin: 26px auto 22px;
}

.news-con .news-banner-box {
    width: 52.77777%;
}

.news-con .news-banner-box .bottom-banner {
    max-height: 492px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
}

.news-con .news-banner-box .bottom-banner img {
    width: 100%;
}

.news-con .news-banner-box .bottom-banner .title-container {
    position: absolute;
    bottom: 0px;
    left: 0;
    color: #fff;
    padding-left: 32px;
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    padding: 10px 30px;
    padding-top: 12px;
}

.news-con .news-banner-box .bottom-banner .title-container h3 {
    font-size: 18px;
    color: #fff;
}

.news-con .news-banner-box .bottom-banner .title-container p {
    padding-top: 12px;
    color: #fff;
}

.news-con .news-banner-box .index-news-banner .flex-control-nav {
    text-align: right;
    padding-right: 20px;
}

.news-con .news-banner-box .index-news-banner .flex-control-nav li {
    margin: 0 5px;
}

.news-con .news-list {
    width: 47.222%;
    padding-left: 40px;
    margin-top: -13px;
}

.news-con .news-list .item {
    display: block;
    margin-top: 11px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    position: relative;
    padding-left: 98px;
    padding-bottom: 12px;
}

.news-con .news-list .item:before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0px;
    background: var(--primary-color);
    width: 0%;
    height: 1px;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
}

.news-con .news-list .item:hover:before {
    width: 100%;
}

.news-con .news-list .item .time {
    position: absolute;
    left: 0px;
    top: 2px;
    color: #999;
    font-size: 14px;
}

.news-con .news-list .item .tit {
    white-space: nowrap;
    overflow: hidden;
    word-break: keep-all;
    text-overflow: ellipsis;
    font-size: 16px;
}

.news-con .news-list .item:hover {
    color: var(--primary-color);
}

.news-con .row {
    margin: 0px;
}

.news-con-1 .page-title {
    padding-bottom: 40px;
}

.news-con-1 .page-title .amore {
    top: 0px;
}



/* -- */


.index-partner {
    padding: 98px 0 100px;
}

.index-partner .brands {
    margin: 18px -30px 0;
}

.index-partner .brands .item-box {
    float: left;
    width: 20%;
    padding: 0 16px;
    margin-top: 30px;

}

.index-partner .brands .item-box .item {
    position: relative;
    height: 118px;
    box-shadow: 0px 0px 9px -3px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    background-color: #fff;
}

.index-partner .brands .item .up-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    -webkit-transition: all ease 1s;
    -moz-transition: all ease 1s;
    -ms-transition: all ease 1s;
    -o-transition: all ease 1s;
    transition: all ease 1s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.index-partner .brands .item .up-img img {
    display: inline-block;
    vertical-align: middle;
}

.index-partner .brands .item .down-text {
    background: var(--primary-color);
    opacity: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    /*     -webkit-transition: all ease 1s;
    -moz-transition: all ease 1s;
    -ms-transition: all ease 1s;
    -o-transition: all ease 1s;
    transition: all ease 1s; */
    padding: 0 20px;
    color: #fff;
    text-align: center;
}


.index-partner .brands .item .down-text a {
    color: #fff;
    display: block;
}

.index-partner .brands .item .down-text h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.index-partner .brands .item .down-text h4 a {
    color: #fff;
}

.index-partner .brands .item .down-text p a {
    color: #fff;
}

@media screen and (min-width: 1201px) {

    .index-partner .brands .item:hover .up-img {
        opacity: 1;
        transition: all 0s linear;
    }

    .index-partner .brands .item .up-img img {
        transition: all .4s linear;
    }

    .index-partner .brands .item:hover .up-img img {
        margin-top: -50px;
    }

    .index-partner .brands .item .down-text h4 {
        opacity: 0;
        transition: all .4s linear;
    }

    .index-partner .brands .item:hover .down-text h4 {
        opacity: 1;
        transition: all .4s linear .2s;
        -webkit-animation-name: fadeInUp;
        animation-name: fadeInUp;
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
    }

    .index-partner .brands .item .down-text p {
        opacity: 0;
        transition: all .4s linear;
    }

    .index-partner .brands .item:hover .down-text p {
        opacity: 1;
        -webkit-animation-name: fadeInUp;
        animation-name: fadeInUp;
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
    }


    .index-partner .brands .item:hover .down-text {
        opacity: 1;
    }


    @-webkit-keyframes fadeInUp {
        0% {
            opacity: 0;
            -webkit-transform: translateY(20px);
            transform: translateY(20px);
        }

        100% {
            opacity: 1;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    }

    @keyframes fadeInUp {
        0% {
            opacity: 0;
            -webkit-transform: translateY(20px);
            -ms-transform: translateY(20px);
            transform: translateY(20px);
        }

        100% {
            opacity: 1;
            -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
            transform: translateY(0);
        }
    }

}



/* .index-partner .brands .item:hover .up-img {
    top: -118px;
}

.index-partner .brands .item:hover .down-text {
    top: 0;
} */

.index-partner .brands .flex-viewport {
    padding-bottom: 60px;
}

.index-partner .brands .flex-control-nav {
    bottom: 0;
}

.index-partner .brands .flex-control-nav a {
    border: 2px solid var(--primary-color);
}

.index-partner .brands .flex-control-nav .flex-active {
    background: var(--primary-color);
}

.footer {
    width: 100%;
    background: url("../images/footerBackground.jpg");
    position: relative;
}

.footer:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 72px;
    height: 1px;
    background-color: #fff;
    opacity: 0.1;
    filter: alpha(opacity=10);
}

.footer .top {
    padding: 67px 0 88px;
}

.footer .top .fr {
    text-align: center;
}

.footer .top .fr img {
    display: inline-block;
    margin-top: 6px;
}


.footer .top .wx {
    width: 120px;
    height: 120px;
}



.footer .top .fl {
    width: 77.083333%;
    float: left;
}

.footer .top .fl .item {
    width: 19%;
    float: left;
    position: relative;
    padding-left: 32px;
    display: none;
}

.footer .top .fl .item.phone_item {
    width: 24%;
}

.wrapper #trihiden {
    display: none;
}

.footer .top .fl .item .zx img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    margin-top: -2px;
}



.footer .top .fl .item:after {
    content: '';
    width: 1px;
    height: 210px;
    background-color: #fff;
    opacity: 0.5;
    filter: alpha(opacity=50);
    position: absolute;
    top: 0;
    left: 0;
}

.footer .top .fl .item .foot-nav-title {
    font-size: 18px;
    line-height: 40px;
    color: #fff;
}

.footer .top .fl .item .foot-nav-title a {
    color: #ffffff;
}

.footer .top .fl .item .foot-nav-sub li {
    font-size: 14px;
    line-height: 28px;
}

.footer .top .fl .item .foot-nav-sub li a {
    color: #ffffff;
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.footer .top .fl .item .tel {
    font-size: 18px;
    padding-top: 6px;
    color: #fff;
}

.footer .top .fl .item .tel a {
    color: #fff;
}



.footer .top .fl .item .consult {
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 8px 39px;
    font-size: 16px;
    color: #fff;
    display: inline-block;
    margin-top: 18px;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
}

.footer .top .fr h3 {
    font-size: 18px;
    color: #ffffff;
    line-height: 40px;
}

.footer .bottom {
    padding: 26px 0;
    text-align: center;
}

.footer .bottom {
    font-size: 14px;
    color: #ffffff;
    opacity: 1;
    filter: alpha(opacity=100);
}

.footer .bottom a {
    color: #ffffff;
    opacity: 1;
    filter: alpha(opacity=100);
}

.footer .bottom a:hover {
    color: #ffffff;
    opacity: 0.5;
    filter: alpha(opacity=0.5);
}



.footer .bottom img {
    display: inline-block;
    vertical-align: middle;
    margin-top: -4px;
    margin-left: 16px;
}


.tab-box {
    background: #f2f5f7;
    text-align: center;
}

.tab-box .tab {
    display: inline-block;
    vertical-align: bottom;
}

.tab-box .tab .item {
    float: left;
    font-size: 18px;
    line-height: 1;
    padding: 26px 0px;
    width: 180px;
    text-align: center;
    position: relative;
}


.tab-box .tab .item:hover {
    color: var(--primary-color);
}

.tab-box .tab .item:before {
    content: '';
    width: 1px;
    height: 16px;
    background-color: #929495;
    position: absolute;
    top: 27px;
    left: 0;
}

.tab-box .tab .item.no-line:before,
.tab-box .tab .item:first-child:before {
    display: none;
}



.company-profile {
    padding: 80px 15px;
}

.company-profile p {
    font-size: 17px;
    line-height: 28px;
    color: #333333;
    padding-bottom: 18px;
}

.company-video {
    padding: 170px 0;
}

.company-video h4 {
    font-size: 30px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
}

.company-video p {
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
}

.company-video div img {
    margin: 0 auto;
    cursor: pointer;
}

.company-adv {
    padding: 100px 0;
}

.company-adv .row {
    margin: 0 -20px;
}

.company-adv .row .col-bg-4 {
    padding: 0 20px;
}

.company-adv .container .item .al {
    /* height: 320px; */
    width: 100%;
    display: block;
    overflow: hidden;
    position: relative;
    /* border-bottom: 4px solid #dd692f; */
    -webkit-box-shadow: 0 0 5px darkgrey;
    -moz-box-shadow: 0 0 5px darkgrey;
    box-shadow: 0 0 5px darkgrey;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    cursor: auto;
}

.company-adv .container .item .al:hover .down {
    /* background: #dd692f; */
    height: initial;
    opacity: 1;
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    -ms-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;

}


/* .company-adv .container .item:hover .down h3 {
    color: #ffffff;
} */

/* .company-adv .container .item:hover .down p {
    color: #ffffff;
    height: 180px;
    opacity: 1;

    -webkit-line-clamp: initial;
    -webkit-box-orient: initial; 
}*/

.company-adv .container .item .up {
    width: 100%;
    height: 280px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-position: center center;
}

.company-adv .container .item .down {
    width: 100%;
    /* height: 170px; */
    padding: 20px 25px;
    box-sizing: padding-box;
    overflow: hidden;
    /* position: absolute; */
    bottom: 0;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -ms-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.company-adv .container .item .down h3 {
    font-size: 20px;
    text-align: center;
    color: #333333;
    /* padding-bottom: 20px; */
}

.company-adv .container .item .down p {
    color: #333333;
    line-height: 30px;
    height: 60px;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    /*     -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis; */
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -ms-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}


.company-adv .container .item .text {
    position: absolute;
    z-index: 2;
    left: 0px;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    padding: 30px;
    color: #fff;
    bottom: -100%;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
}

.company-adv .container .item .text h4 {
    font-size: 20px;
    text-align: center;
}

.company-adv .container .item .text p {
    font-size: 16px;
    margin-top: 16px;
    line-height: 26px;
}

.company-adv .container .item .al:hover .text {
    bottom: 0px;
}



.map_about {
    position: relative;
}


.distribution {
    width: 100%;
    background: #ebeef0;
    padding: 158px 0 106px;
    position: relative;
    overflow: hidden;
}

.distribution .container .fl {
    width: 45%;
}

.distribution .container .fl p {
    line-height: 30px;
}

.distribution .container .fl .items {
    padding-top: 28px;
}

.distribution .container .fl .items .item {
    float: left;
    width: 205px;
    color: #666666;
    padding-bottom: 36px;
}

.distribution .container .fl .items .item .num {
    font-size: 30px;
    color: #333333;
}

.distribution .container .fl .items .item .unit {
    color: #333333;
}

.distribution .container .fr {
    /* width: 55%; */
    height: 650px;
    position: absolute;
    right: -90px;
    top: -150px;
    width: 820px;
}

.structure {
    width: 100%;
    padding: 80px 0 100px;
}

.structure .container .structure-img {
    width: 100%;
    padding-top: 8px;
    -webkit-box-shadow: 0 0 5px #d8e3ea;
    -moz-box-shadow: 0 0 5px #d8e3ea;
    box-shadow: 0 0 5px #d8e3ea;
}

.culture {
    width: 100%;
    padding: 80px 0 0px;
}

.culture .culture-item {
    width: 100%;
    margin-bottom: 50px;
    background: #ebeef0;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -ms-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.culture .culture-item:hover {
    background: #fff;
    -webkit-box-shadow: 0 0 8px #d8e3ea;
    -moz-box-shadow: 0 0 8px #d8e3ea;
    box-shadow: 0 0 8px #d8e3ea;
}

.culture .culture-item:hover .text .title {
    color: var(--primary-color);
}

.culture .culture-item:hover .text .en {
    color: #dd692f;
}

.culture .img-left .img-box,
.culture .img-right .text {
    float: left;
    width: 50%;
    height: 220px;
    padding: 48px 0 0 60px;
}

.culture .culture-item .text {
    padding: 48px 0 0 60px;
}

.culture .img-left .text,
.culture .img-right .img-box {
    float: right;
    width: 50%;
    height: 220px;
}

.culture .culture-item .text .title {
    font-size: 30px;
    color: #333333;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -ms-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.culture .culture-item .text .en {
    font-size: 20px;
    color: #333333;
    padding: 16px 0 25px;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -ms-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.culture .culture-item .text p {
    font-size: 20px;
    color: #4c4c4c;
    line-height: 27px;
}

.coreValues {
    width: 100%;
    padding: 0px 0 90px;
}

.coreValues .container .row {
    margin: 0 -20px;
    padding-top: 8px;
}

.coreValues .container .col-bg-4 {
    padding: 0 20px;
    margin-bottom: 40px;
}

.coreValues .container .items .item {
    border-radius: 4px;
    background: #ebeef0;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -ms-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}


.coreValues .container .items .item .img {
    overflow: hidden;
}

.coreValues .container .items .item .img img {
    overflow: hidden;
    transform: scale(1, 1);
    -webit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}

.coreValues .container .items .item .img:hover img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
}



.coreValues .container .items .item:hover {
    background: #ffffff;
    -webkit-box-shadow: 0 0 8px #d8e3ea;
    -moz-box-shadow: 0 0 8px #d8e3ea;
    box-shadow: 0 0 8px #d8e3ea;
}

.coreValues .container .items .item:hover .text {
    color: var(--primary-color);
}

.coreValues .container .items .item .img img {
    width: 100%;
}

.coreValues .container .items .item .text {
    text-align: center;
    padding: 24px 0;
    font-size: 20px;
    color: #4c4c4c;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -ms-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.history {
    width: 100%;
    padding: 80px 0;
}

.history .container .history-img {
    width: 100%;
    -webkit-box-shadow: 0 0 5px #d8e3ea;
    -moz-box-shadow: 0 0 5px #d8e3ea;
    box-shadow: 0 0 5px #d8e3ea;
}

.honor {
    width: 100%;
    padding-top: 80px;
}

.honor .container .award {
    padding: 42px 45px;
    background: #f0f3f5;
}

.honor .container .award .icon {
    float: left;
    width: 41.0801%;
}

.honor .container .award .awardList {
    float: left;
    width: 58.91%;
    padding-left: 40px;
    padding-top: 5px;
}

.honor .container .award .awardList .item {
    padding: 15px 0;
    border-bottom: 1px solid #d9d9d9;
    /* cursor: pointer; */
}

/* .honor .container .award .awardList .item:hover .smtit {
    color: #dd692f;
    text-decoration: underline;
} */

.honor .container .award .awardList .item .smtit {
    font-size: 20px;
    color: #333333;
    max-width: 80%;
    height: 20px;
    overflow: hidden;
}


.honor .container .award .awardList .item:hover .smtit {
    color: #dd692f;
}

.honor .container .award .awardList .item:hover .time {
    color: #dd692f;
}




.honor .container .award .awardList .item .time {
    font-size: 18px;
    line-height: 20px;
    color: #666666;
}

.honor .container .awards {
    margin: 0 -16px;
    /*     padding: 54px 0 96px; */
    padding: 0px 0 96px;
}

.honor .container .awards .slides li .item-box {
    padding: 0 16px;
    margin-bottom: 26px;
}

.honor .container .awards .item .img {
    width: 100%;
}


.honor .container .awards .item {
    cursor: pointer;
}

.honor .container .awards .item:hover .text {
    color: var(--primary-color);
}



.honor .container .awards .item .text {
    width: 100%;
    font-size: 18px;
    color: #333333;
    text-align: center;
    padding: 16px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.honor .container .awards .flex-viewport {
    padding-bottom: 10px;
}

.layui-layer-awards .layui-layer-content {
    padding: 30px;
}

.layui-layer-awards .layui-layer-content img {
    width: 100%;
}

.layui-layer-awards .layui-layer-content .text {
    font-size: 24px;
    color: #dd692f;
    text-align: center;
    padding-top: 30px;
}



.paging-slider .flex-direction-nav {
    position: absolute;
    height: 24px;
    bottom: 0;
    z-index: 0;
    width: 100%;
    text-align: center;
}

.paging-slider .flex-direction-nav li {
    display: inline-block;
}

.paging-slider .flex-direction-nav li.flex-nav-prev {
    margin-left: 0 !important;
}

.paging-slider .flex-direction-nav li.flex-nav-next {
    margin-right: 0 !important;
}

.paging-slider .flex-direction-nav a {
    opacity: 1;
    text-indent: -9999px;
    position: static;
    display: block;
    width: 24px;
    height: 24px;
    margin: 0 12px;
    background-image: url(../images/paging-bg.png);
    background-repeat: no-repeat;
    outline: none;
}

.paging-slider .flex-direction-nav a.flex-prev {
    background-position: 0 0;
}

.paging-slider .flex-direction-nav a.flex-next {
    background-position: -48px 0;
}

.paging-slider .flex-direction-nav a.flex-prev:hover {
    background-position: -24px 0;
}

.paging-slider .flex-direction-nav a.flex-next:hover {
    background-position: -72px 0;
}

.paging-slider {
    text-align: center;
}

.paging-slider .flex-control-nav {
    position: relative;
    bottom: 0;
    display: inline-block;
    width: auto;
}

.paging-slider .flex-control-nav li {
    margin: 0 14px;
}

.paging-slider .flex-control-nav a {
    width: auto;
    height: auto;
    text-indent: 0;
    font-size: 16px;
    color: #666666;
}

.paging-slider .flex-control-nav a.flex-active {
    color: #dd692f;
}

.paging-slider .flex-control-nav a:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: transparent;
    margin-top: 3px;
}

.paging-slider .flex-control-nav a.flex-active:after {
    background-color: #dd692f;
}

.responsibility {
    padding: 80px 0 0;
}

.responsibility .container .banner {
    width: 100%;
}

.responsibility .container .banner .col-bg-6 {
    padding: 0;
    overflow: hidden;
}


.responsibility .container .banner .col-bg-6 img {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}

.responsibility .container .banner .col-bg-6:hover img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
}


.responsibility .container .banner .col-bg-6 .text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    color: #ffffff;
    /* padding: 0 36px; */

}

.responsibility .container .banner .col-bg-6 h3 {
    font-size: 30px;
    padding-bottom: 14px;
    padding: 0px 36px;
    padding-bottom: 10px;
}

.responsibility .container .banner .col-bg-6 p {
    line-height: 27px;
    background: url('../images/img-shadow.png') no-repeat center bottom;
    padding: 20px 36px;
    padding-top: 10px;
}

.pic-shadow {
    width: 100%;
    position: absolute;
    bottom: 0;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.responsibility .container .duty {
    margin: 0 -10px;
    padding-bottom: 100px;
}

.responsibility .container .duty-slider {
    width: 100%;
}

.responsibility .container .duty-slider .col-bg-3 {
    padding: 0 10px;
    margin-top: 20px;
    width: calc(100% / 3);
}

.responsibility .container .duty-slider .col-bg-4 {
    padding: 0 10px;
    margin-top: 20px;
}

.responsibility .container .duty-slider .col-bg-4 .con {
    padding-bottom: 20px;
    border-bottom: 1px solid #d7d7d7;
}


.responsibility .container .duty-slider .item {
    height: 100px;
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: row;

}

.responsibility .container .duty-slider .item .up {
    overflow: hidden;
    width: 160px;
}

.responsibility .container .duty-slider .item .up img {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    width: 100%;
}

.responsibility .container .duty-slider .item:hover .up img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
}




.responsibility .container .duty-slider .item .up img {
    width: 100%;
}

.responsibility .container .duty-slider .item .down {
    /* width: 100%; */
    /*padding: 54px 26px 30px;*/
    padding: 10px 12px;
    background: #f1f1f1;
    position: relative;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    /* text-align: center; */
    width: calc(100% - 160px);
}

.responsibility .container .duty-slider .item .down p {
    font-size: 16px;
    line-height: 30px;
    color: #000;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.responsibility .container .duty-slider .item .down strong {
    display: block;
    font-size: 14px;
    margin-top: 10px;
}

/* .responsibility .container .duty-slider .item .down strong:before { content: ''; background: url('../images/timg_icon.png') no-repeat center center;width: 20px;
    height: 20px;
    background-size: 18px auto;
    display: inline-block;
    vertical-align: middle;
    margin-top: -4px;
    margin-right: 6px; }  */


@media (max-width: 1229px) {
    .responsibility .container .duty-slider .item .down p {
        font-size: 16px;
        line-height: 26px;
    }
}

.responsibility .container .duty-slider .item .down p a {
    color: #333;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}

.responsibility .container .duty-slider .item:hover .down p a {
    color: #dd692f;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}

.responsibility .container .duty-slider .item:hover .down {
    background: #fff;
}

.responsibility .container .duty-slider .item {
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}

.responsibility .container .duty-slider .item:hover {
    -webkit-box-shadow: 0 0 6px darkgrey;
    -moz-box-shadow: 0 0 6px darkgrey;
    box-shadow: 0 0 6px darkgrey;
}



.responsibility .container .duty-slider .item .date {
    position: absolute;
    top: -36px;
    left: 5%;
    width: 72px;
    height: 72px;
    background: #dd692f;
    padding: 8px;
}

.responsibility .container .duty-slider .item .date .day {
    font-size: 36px;
    color: #fff;
    line-height: 28px;
    letter-spacing: 6px;
    text-align: center;
    text-indent: 4px;
}

.responsibility .container .duty-slider .item .date .yearMonth {
    font-size: 14px;
    color: #fff;
    margin-top: 9px;
    text-align: center;
}

.responsibility .container .duty-slider .flex-viewport {
    padding-bottom: 50px;
}

.news-info {
    padding: 80px 0 100px;
}

.news-info .container .newsList {
    margin: 8px 0 80px;
    border-top: 1px solid #d9d9d9;
}

.news-info .container .newsList .item {
    padding: 40px;
    border-bottom: 1px solid #d9d9d9;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.news-info .container .newsList .item:hover {
    -webkit-box-shadow: 0 0 6px darkgrey;
    -moz-box-shadow: 0 0 6px darkgrey;
    box-shadow: 0 0 6px darkgrey;
}

.news-info .container .newsList .item:hover .right .title {
    color: #dd692f;
}

.news-info .container .newsList .item .left {
    width: 343px;
}

.news-info .container .newsList .item .right {
    width: 67%;
    padding-left: 40px;
}

.news-info .container .newsList .item1 .right {
    padding-right: 40px;
    padding-left: 0px;
}



.news-info .container .newsList .item .right .title {
    font-size: 22px;
    color: #333333;
    padding-top: 6px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.news-info .container .newsList .item .right .title a {
    color: #333;
}

.news-info .container .newsList .item .right .title a:hover {
    color: #e07843;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}



.news-info .container .newsList .item .right .time {
    color: #666666;
    margin-top: 22px;
}

.news-info .container .newsList .item .right p {
    line-height: 28px;
    color: #4c4c4c;
    margin-top: 18px;
}

.news-info .container .newsList .item .right .Orangetouming {
    margin-top: 20px;
}


/* -- */
.news-info-box {
    padding: 80px 0 100px;
}

.news-info-box .list {
    padding-bottom: 80px;
}

.news-info-box .list ul li .link {
    display: block;
    position: relative;
    padding: 18px 0px;
    padding-left: 115px;
    border-bottom: 1px solid #eaeaea;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.news-info-box .list ul li .link strong {
    position: absolute;
    left: 0px;
    color: #999;
    top: 50%;
    margin-top: -8px;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
}

.news-info-box .list ul li .link h3 {
    font-size: 18px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.news-info .container .newsList .item {
    padding: 40px;
    border-bottom: 1px solid #d9d9d9;
}

.news-info-box .list ul li .link:hover {
    -webkit-box-shadow: 0 0 6px darkgrey;
    -moz-box-shadow: 0 0 6px darkgrey;
    box-shadow: 0 0 6px darkgrey;
}

.news-info-box .list ul li .link:hover strong {
    left: 10px;
}

.news-info-box .list ul li .link:hover h3 {
    padding-left: 10px;
    color: #dd692f;
}



.infoBulletin {
    padding: 80px 0 100px;
}

.infoBulletin .container .bulletinList {
    width: 100%;
    margin-bottom: 50px;
    border-top: 1px solid #d9d9d9;
}

.infoBulletin .container .bulletinList .item {
    width: 100%;
    padding: 30px;
    border-bottom: 1px solid #d9d9d9;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.infoBulletin .container .bulletinList .item:hover {
    -webkit-box-shadow: 0 0 6px darkgrey;
    -moz-box-shadow: 0 0 6px darkgrey;
    box-shadow: 0 0 6px darkgrey;
}

.infoBulletin .container .bulletinList .item .date {
    width: 60px;
    height: 60px;
    text-align: center;
    border: 1px solid #dd692f;
    color: #dd692f;
}

.infoBulletin .container .bulletinList .item .date .day {
    font-size: 36px;
    letter-spacing: 4px;
    text-align: center;
    text-indent: 4px;
}

.infoBulletin .container .bulletinList .item .date .yearMonth {
    font-size: 14px;
    line-height: 22px;
    border-top: 1px solid #dd692f;

}

.infoBulletin .container .bulletinList .item .mainbody {
    padding-left: 28px;
}

.infoBulletin .container .bulletinList .item .mainbody .title a {
    font-size: 22px;
    color: #333333;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}

.infoBulletin .container .bulletinList .item .mainbody .title a:hover {
    color: #e07843;
}


.infoBulletin .container .bulletinList .item .mainbody p {
    color: #4c4c4c;
    margin-top: 18px;
    line-height: 28px;
    height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.infoBulletin .container .bulletinList .item .mainbody .showmore {
    margin-top: 22px;
}

.videoCenter {
    padding: 80px 0 100px;
}

.videoCenter .container .videoList {
    margin: 0 -17px;
    padding: 10px 0 15px;
}

.videoCenter .container .videoList .col-bg-3 {
    padding: 0 17px;
    margin-bottom: 35px;
    cursor: pointer;
}

.videoCenter .container .videoList .item {
    display: block;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.videoCenter .container .videoList .item:hover {
    -webkit-box-shadow: 0 0 10px darkgrey;
    -moz-box-shadow: 0 0 10px darkgrey;
    box-shadow: 0 0 10px darkgrey;
}

.videoCenter .container .videoList .item:hover .text {
    background: #ffffff;
}

.videoCenter .container .videoList .item:hover .text p {
    color: #dd692f;
}

.videoCenter .container .videoList .item .img img {
    width: 100%;
}

.videoCenter .container .videoList .item .img {
    position: relative;
}

.videoCenter .container .videoList .item .img .more {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(224, 120, 67, 0.9);
    opacity: 0;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
}

.videoCenter .container .videoList .item .img .more span {
    border: 1px solid #fff;
    border-radius: 20px;
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
}

.videoCenter .container .videoList .item:hover .more {
    opacity: 1;
}

.videoCenter .container .videoList .item:hover .more span {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
}





.videoCenter .container .videoList .item .text {
    background: #f0f3f5;
    /* padding: 15px 21px; */
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.videoCenter .container .videoList .item .text p {
    font-size: 18px;
    color: #333333;
    /* line-height: 22px; */
    /* max-width: 80%; */
    /* min-height: 44px; */
    overflow: hidden;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    text-align: center;
}

.successfulCases {
    padding: 80px 0;
}

.successfulCases .container .caseList {
    margin: 0 -30px;
    padding-top: 8px;
}

.successfulCases .container .caseList>.col-bg-4 {
    padding: 0 30px;
}

.successfulCases .container .caseList .item {
    margin-bottom: 60px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.successfulCases .container .caseList .item:hover {
    -webkit-box-shadow: 0 0 6px darkgrey;
    -moz-box-shadow: 0 0 6px darkgrey;
    box-shadow: 0 0 6px darkgrey;
}

.successfulCases .container .caseList .item:hover .text {
    background: #ffffff;
}

.successfulCases .container .caseList .item:hover .text .title {
    color: #dd692f;
}

.successfulCases .container .caseList .item .img-box img {
    width: 100%;
}

.successfulCases .container .caseList .item .text {
    padding: 24px 26px 30px;
    background: #f1f1f1;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.successfulCases .container .caseList .item .text .title {
    font-size: 22px;
    color: #000;
    padding-bottom: 10px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.successfulCases .container .caseList .item .text .title a {
    color: #333;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}

.successfulCases .container .caseList .item:hover .text .title a {
    color: var(--primary-color);
}

.successfulCases .container .caseList .item .img-box {
    overflow: hidden;
}

.successfulCases .container .caseList .item .img-box img {
    transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -o-transition: width all 0.3s linear;
    transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);

}

.successfulCases .container .caseList .item:hover .img-box img {

    transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    -webkit-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);

}



.successfulCases .container .caseList .item .text p {
    color: #4c4c4c;
    line-height: 30px;
    height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.partners {
    padding: 80px 0 98px;
}

.partners .container {}

.partners .container .partnerList {
    width: 100%;
    margin: 0 -19px;
    padding-bottom: 10px;
}

.partners .container .partnerList .col-bg-4 {
    padding: 0 19px;
}

.partners .container .partnerList .item {
    background: #f2f5f7;
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 30px;
    /* border: 1px solid #e4e4e4; */
}

.partners .container .partnerList .item:hover .left .text {
    top: 0;
}

.partners .container .partnerList .item .left {
    position: relative;
    /* width: 56.8%; */
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    height: 98px;
    display: table;
    table-layout: fixed;
    background: #fff;
    text-align: center;
}

.partners .container .partnerList .item .left img {
    transition: all .4s linear;
    display: inline-block;
    vertical-align: middle;
    height: 98px;
    object-fit: contain;
}


.partners .container .partnerList .item .left .img {
    display: table-cell;
    vertical-align: middle;
    height: 100%;
    width: 100%;
    text-align: center;
}


.partners .container .partnerList .item:hover .left .text .title {
    opacity: 1;
    transition: all .6s linear .6s;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}


.partners .container .partnerList .item:hover .left .text .btn {
    opacity: 1;
    transition: all .6s linear .6s;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}




@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}




.partners .container .partnerList .item .left .text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    background: var(--primary-color);
    border-radius: 5px;
    left: 0px;
    /*     -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s; */
    opacity: 0;
}


.partners .container .partnerList .item .left .text a {
    display: block;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.partners .container .partnerList .item:hover .left .text {
    opacity: 1;
    transition: all .2s linear;
}


.partners .container .partnerList .item:hover .left img {
    margin-top: -50px;
    transition: all .4s linear .2s;
}


.partners .container .partnerList .item .left .text .title {
    font-size: 18px;
    color: #fff;
    /*     text-align: center;
    padding-top: 14%; */
}

.partners .container .partnerList .item .left .text .title a {
    color: #fff;
}


.partners .container .partnerList .item .left .text .btn {
    text-align: center;
    margin-top: 14px;
    color: #fff;
}

.partners .container .partnerList .item .left .text .btn a {
    color: #fff;
    font-size: 14px;
}

/* .partners .container .partnerList .item .left .text .btn a:hover {
    text-decoration: underline;
} */

.partners .container .partnerList .item .right {
    color: #595959;
    width: 43.2%;
    font-size: 14px;
    line-height: 24px;
    padding-left: 14px;
}

.corporation {
    padding: 80px 0 0;
}

.corporation .corp-why {
    padding: 20px 0 80px;
}

.corporation .corp-why .text {
    padding-right: 10px;
}

.corporation .corp-why .text p {
    font-size: 18px;
    line-height: 30px;
    color: #595959;
    padding-right: 90px;
}

.corporation .corp-why .text .data {
    font-size: 16px;
    margin-top: 40px;
}

.corporation .corp-why .text .col-bg-4 {
    padding: 0;
    margin-bottom: 24px;
}

.corporation .corp-why .text .data .up {
    color: #dd692f;
}

.corporation .corp-why .text .data .up strong {
    font-size: 36px;
    padding-right: 10px;
}

.corporation .corp-why .text .data .down {
    color: #666;
    line-height: 40px;
}

.corporation .corp-why .text .Orangetouming {
    padding: 5px 20px;
    margin-top: 14px;
}

.corporation .corp-why .img-box {
    padding: 0 15px 0 0;
}

.corporation .corp-ser {
    background-color: #f2f5f7;
    padding: 80px 0;
}

.corporation .corp-ser p {
    font-size: 18px;
    line-height: 30px;
    color: #595959;
}

.corporation .corp-ser .imgbox {
    padding-top: 44px;
}

.corporation .corp-ser .imgbox img {
    margin: 0 auto;
}

.corporation .corp-process {
    padding: 80px 0 140px;
}

.corporation .corp-process .process {
    padding-top: 16px;
    margin: 0 -8px;
}

.corporation .corp-process .process .item-box {
    width: 20%;
    float: left;
    padding: 0 8px;
}

.corporation .corp-process .process .item {
    text-align: center;
    padding: 36px 32px;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}

.corporation .corp-process .process .item:hover {
    -webkit-box-shadow: 0 0 8px #d8e3ea;
    -moz-box-shadow: 0 0 8px #d8e3ea;
    box-shadow: 0 0 8px #d8e3ea;
}

.corporation .corp-process .process .item:hover .icon-box {
    background-color: #fe7f38;
}

.corporation .corp-process .process .item:hover .icon-box img.hov-af {
    display: block;
}

.corporation .corp-process .process .item:hover .icon-box img.hov-bf {
    display: none;
}

.corporation .corp-process .process .item .icon-box {
    width: 68px;
    height: 68px;
    background-color: #f0f3f5;
    border-radius: 100%;
    margin: 0 auto 32px;
    padding: 18px 0;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}

.corporation .corp-process .process .item .icon-box img {
    margin: 0 auto;
}

.corporation .corp-process .process .item .icon-box img.hov-af {
    display: none;
}

.corporation .corp-process .process .item h5 {
    font-size: 22px;
    color: #4c4c4c;
}

.corporation .corp-process .process .item .line {
    width: 21px;
    height: 2px;
    background-color: #666666;
    margin: 15px auto 12px;
}

.corporation .corp-process .process .item p {
    font-size: 18px;
    line-height: 24px;
    color: #4c4c4c;
}

.corporation .corp-consult {
    background-color: #f2f5f7;
    padding: 80px 0;
}

.corporation .corp-consult .form-main {
    padding: 18px 30px 0;
}

.talentConcept {
    padding-top: 80px;
}

.talentConcept .hrv {
    width: 100%;
    padding: 28px 0 80px;
}

.talentConcept .hrv .fl {
    max-width: 620px;
    padding-right: 66px;
}


.talentConcept .hrv .fl .range-title {
    line-height: 42px;
    padding-bottom: 5px;
}

.talentConcept .hrv .fl .text {
    color: #4c4c4c;
    line-height: 30px;
    padding-top: 16px;
}

.talentConcept .hrv .fl .icons {
    padding-top: 22px;
}

.talentConcept .hrv .fl .icons .item {
    float: left;
    width: 33.3333%;
}

.talentConcept .hrv .fl .icons .item .box {
    display: inline-block;
}

.talentConcept .hrv .fl .icons .item img {
    margin: 0 auto
}

.talentConcept .hrv .fl .icons .item p {
    font-size: 20px;
    margin-top: 20px;
}

.talentConcept .hrv .fr {
    max-width: 580px;
}

.talentConcept .boards {
    padding: 100px 0;
    background: #f4f6f7;
}

.talentConcept .boards .item {
    border-radius: 10px;
    overflow: hidden;
}

.talentConcept .boards .col-bg-4 {
    padding: 0 30px;
}

.talentConcept .boards .row {
    margin: 0 -30px;
}

.talentConcept .boards .item .title {
    height: 73px;
    width: 100%;
    background: #ea7a42;
    display: table;
}

.talentConcept .boards .item .title h4 {
    text-align: center;
}

.talentConcept .boards .item .title .smtit {
    font-size: 24px;
    color: #ffffff;
    vertical-align: middle;
    margin-left: 16px;
}

.talentConcept .boards .item .title img {
    display: inline-block;
    vertical-align: middle;
}

.talentConcept .boards .item .alist {
    padding-top: 42px;
    height: 250px;
    background: #fff;
}

.talentConcept .boards .item .alist li {
    text-align: center;
}

.talentConcept .boards .item .alist li .img-box {
    width: 50px;
    display: inline-block;
    vertical-align: middle;
}

.talentConcept .boards .item .alist li p {
    display: inline-block;
    vertical-align: middle;
    font-size: 20px;
    line-height: 24px;
    color: #4c4c4c;
    max-width: 260px;
    text-align: left;
}

.talentConcept .boards .col-bg-4.item-four .alist li {
    padding-bottom: 25px;
}

.talentConcept .boards .col-bg-4.item-three .alist li {
    padding-bottom: 50px;
}

.talentConcept .boards .col-bg-4.item-two .alist li {
    padding-bottom: 30px;
}

.talentConcept .boards .col-bg-4.item-two .alist li .img-box,
.talentConcept .boards .col-bg-4.item-two .alist li p {
    vertical-align: top;
}

.talentConcept .boards .col-bg-4.item-two .alist li .img-box {
    padding-top: 4px;
}

.talentConcept .promotion {
    padding: 86px 0;
}

.talentConcept .promotion .container .img-box {
    margin-top: -15px;
}

.talentConcept .promotion .container .img-box img {
    margin: 0 auto;
}


.jobVacancy {
    padding: 80px 0 40px;
    color: #666;
}

.jobVacancy .container .screening {
    width: 100%;
}

.jobVacancy .container .screening .smtit {
    font-size: 18px;
    padding: 19px 6px;
    border-bottom: 1px solid #e4e4e4;
}

.jobVacancy .container .screening .smtit p {
    color: #333;
    margin-right: 15px;
    float: left;
    line-height: 30px;
}

.jobVacancy .container .screening .smtit .item {
    float: left;
    font-size: 18px;
    color: #333333;
    padding: 0 15px;
    cursor: pointer;
    line-height: 30px;
}

.jobVacancy .container .screening .smtit .active {
    color: #dd692f;
}

.jobVacancy .container .position {
    margin-top: 32px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.jobVacancy .container .position .title {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e4e4e4;
}

.jobVacancy .container .position .title>* {
    font-size: 18px;
    color: #666666;
}

.jobVacancy .container .position .title .positionName,
.jobVacancy .container .position .item .positionName {
    width: 17%;
}

.jobVacancy .container .position .title .workingPlace,
.jobVacancy .container .position .item .workingPlace {
    width: 40%;
    padding-right: 20px;
}

.jobVacancy .container .position .title .workingLife,
.jobVacancy .container .position .item .workingLife {
    width: 22%;
    text-align: center;
}

.jobVacancy .container .position .title .salary {
    width: 20%;
    text-align: center;
}

.jobVacancy .container .position .item {
    width: 100%;
    padding: 16px 20px;
    border-bottom: 1px solid #e4e4e4;
    text-align: left;
    position: relative;
}

.jobVacancy .container .position .item .positionName {
    /* font-weight: bold; */
    color: #333;
}


#zcity {
    margin-left: 100px;
    position: relative;
    padding-left: 64px;
}

#zcity .item_box {
    position: absolute;
    left: 0px;
    top: 0px;
}

#zposition {
    margin-left: 100px;
    position: relative;
    padding-left: 64px;
}

#zposition .item_box {
    position: absolute;
    left: 0px;
    top: 0px;
}

.toggle-icon {
    cursor: pointer;
    position: absolute;
    right: 0px;
}

.jobVacancy .container .position .item .salary {
    width: 20%;
    text-align: center;
}

.jobVacancy .container .position .item .icon {
    width: 2%;
}

.jobVacancy .container .position .item .details {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
    display: none;
}

.jobVacancy .container .position .item .details .job-info {
    padding: 0;
}

.jobVacancy .container .position .item .details .job-info h4 {
    color: #4c4c4c;
    font-size: 16px;
    font-weight: bold;
}

.jobVacancy .container .position .item .details .job-info ul {
    margin-top: 20px;
}

.jobVacancy .container .position .item .details .job-info ul li {
    padding: 2px 18px;
    font-size: 14px;
    line-height: 20px;
    position: relative;
    color: #666666;
}

.jobVacancy .container .position .item .details .job-info ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 2px;
    height: 2px;
    border: 2px solid #fe7f38;
    border-radius: 100%;
}

.jobVacancy .container .position .item .details .job-info .num {
    margin-top: 24px;
}

.jobVacancy .container .position .item .details .Orangetouming {
    padding: 8px 22px;
    margin-right: 20px;
    margin-top: 30px;
}

.show {
    display: block;
}

.hide {
    display: none;
}

.curriculumVitae {
    padding: 80px 0 100px;
}

.curriculumVitae .cv {
    width: 100%;
    -webkit-box-shadow: 0 0 5px #e4e4e4;
    -moz-box-shadow: 0 0 5px #e4e4e4;
    box-shadow: 0 0 5px #e4e4e4;
    display: flex;
    flex-wrap: wrap;
}

.curriculumVitae .cv .cv-tabs {
    width: 100%;
    text-align: center;
}

.curriculumVitae .cv .cv-tabs .cv-tab {
    /* float: left; */
    width: 100%;
    background: #f2f5f7;
    display: block;
    font-size: 24px;
    color: #4c4c4c;
    padding: 18px 0;
}

.curriculumVitae .cv .cv-tabs .cv-tab:after {
    content: url('../images/arrowDownBg.png');
    margin-left: 5px;
    position: relative;
    top: -2px;
}

.curriculumVitae .cv .cv-tabs .active {
    background: #dd692f;
    color: #fff;
}

.curriculumVitae .cv .cv-tabs .active:after {
    content: url('../images/arrowDownWhite.png');
}

.curriculumVitae .cv .cv-tabs .cv-tab img {
    margin-left: 5px;
}

.curriculumVitae .cv .cv-content {
    padding: 40px;
    width: 100%;
}

.curriculumVitae .cv .cv-content .title {
    font-size: 20px;
    color: #666666;
    padding-bottom: 10px;
}

.curriculumVitae .cv .cv-content .contract {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #e4e4e4;
}

.curriculumVitae .cv .cv-content .contract .s-positionName {
    width: 20%;
    color: #dd692f;
}

.curriculumVitae .cv .cv-content .contract .s-address {
    width: 40%;
    color: #666666;
}

.curriculumVitae .cv .cv-content .contract .s-workingLife {
    width: 20%;
    color: #666666;
}

.curriculumVitae .cv .cv-content .contract .s-salary {
    width: 20%;
    color: #666666;
}

.curriculumVitae .cv .cv-content .form-main {
    padding-top: 40px;
}

.curriculumVitae .cv .cv-content .form-main .file-input {
    position: absolute;
    bottom: 0;
    left: -62px;
    padding-top: 6px;
    width: 100%;
    height: 38px;
    z-index: 9;
    cursor: pointer;
    /* opacity: 0; */
    /*  filter:alpha(opacity=0); */
}


.filebox {
    position: relative;
    width: 100%;
    border: 1px solid #ccc;
    overflow: hidden;
    height: 40px;
    cursor: pointer;
    font-size: 14px;
}

.filebox:before {
    content: '';
    background: #fff;
    width: 10px;
    height: 100%;
    left: 0;
    top: 0px;
    z-index: 11;
    position: absolute;
}

.curriculumVitae .cv .cv-content .form-main .sham-file {
    width: 100%;
    height: 40px;
}

.curriculumVitae .cv .cv-content .form-main .sham-file h5 {
    float: left;
    padding-left: 14px;
    font-size: 14px;
    color: #b2b2b2;
    line-height: 38px;
    border-width: 1px 0 1px 1px;
    border-style: solid;
    border-color: #cccccc;
    width: 71%;
}

.curriculumVitae .cv .cv-content .form-main .sham-file .sham-btn {
    /* float: left; */
    width: 29%;
    background-color: #dd692f;
    color: #fff;
    line-height: 40px;
    text-align: center;
    position: absolute;
    top: -1px;
    right: 0px;
    z-index: 2;
}

.curriculumVitae .cv .cv-content .form-main .col-bg-12 {
    text-align: center;
}

.addDownload {
    padding: 100px 0;
    padding-bottom: 30px;
}

.addDownload .container .down-box {
    margin-left: -80px;
}

.addDownload .container .fl {
    width: 38%;
}

.addDownload .container .fr {
    width: 62%;
    padding-left: 126px;
    padding-top: 50px;
    padding-left: 52px;
}


.QRcode1 .qr .icon {
    display: inline-block;
    vertical-align: middle;
    margin-top: -6px;
    margin-right: 2px;
}

.QRcode1 .qr {
    text-align: center;
    position: relative;
}

.QRcode1 .qr .pic {
    display: block;
}

.QRcode1 .qr .pic img {
    display: inline-block;
}

.QRcode1 .qr .Orangetouming {
    padding: 13px 34px;
    padding-top: 16px;
}

.hsHidden {
    display: none;
}



.addDownload .container .fr .title img {
    display: inline-block;
    vertical-align: middle;
}

.addDownload .container .fr .title span {
    font-size: 36px;
    color: #333;
    font-weight: bold;
    margin-left: 30px;
    vertical-align: middle;
}

.addDownload .container .fr .profile {
    margin-top: 32px;
    line-height: 30px;
    color: #4c4c4c;
}

.addDownload .container .fr .advantageul {
    margin-top: 22px;
}

.addDownload .container .fr .advantageul li .li-dian-num {
    border-bottom: 1px solid #333333;
    position: absolute;
    left: 30px;
    top: 10px;
    padding: 5px;
}

.addDownload .container .fr .advantageul li {
    padding: 10px 65px;
    color: #4c4c4c;
    position: relative;
}

.addDownload .container .fr .advantageul li p {
    line-height: 35px;
    text-align: left;
}

/* .li-dian:before {
    content: '__';
    color: #dd692f;
    margin-right: 10px;
} */

.addDownload .container .fr .recommend {
    margin-top: 20px;
    color: #dd692f;
}

.addDownload .container .fr .QRcode {
    margin-top: 46px;
}

.addDownload .container .fr .QRcode .qr {
    display: inline-block;
    text-align: center;
}

.addDownload .container .fr .QRcode .qr>img {
    margin: 0 auto;
}

.addDownload .container .fr .QRcode .Orangetouming {
    width: 200px;
    height: 50px;
    padding: 14px 0;
    border-radius: 25px;
}

.addDownload .container .fr .QRcode .Orangetouming>img,
.addDownload .container .fr .QRcode .Orangetouming>span {
    display: inline-block;
    vertical-align: middle;
}

.addDownload .container .fr .QRcode .ios {
    margin-left: 60px;
}

.teamMien {
    padding: 80px 0;
}

.teamMien .container .picList {
    padding: 10px 0 15px;
}


.QRcode1 {
    text-align: center;
    padding-bottom: 100px;
}

.QRcode1 .qr {
    margin: 0px 80px;
    display: inline-block;
    vertical-align: top;
}




.teamMien .container .picList .item {
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 35px;
    -webkit-box-shadow: 0 0 2px darkgrey;
    -moz-box-shadow: 0 0 2px darkgrey;
    box-shadow: 0 0 2px darkgrey;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    display: block;
}

.teamMien .container .picList .item .img {
    position: relative;
}

.teamMien .container .picList .item .img .more {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(224, 23, 131, 0.9);
    opacity: 0;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
}

.teamMien .container .picList .item .img .more span {
    border: 1px solid #fff;
    border-radius: 20px;
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
}


.teamMien .container .picList .item img {
    width: 100%;
}

.teamMien .container .picList .item:hover {
    -webkit-box-shadow: 0 0 20px darkgrey;
    -moz-box-shadow: 0 0 20px darkgrey;
    box-shadow: 0 0 20px darkgrey;
}


.teamMien .container .picList .item:hover .more {
    opacity: 1;
}

.teamMien .container .picList .item:hover .more span {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
}


.teamMien .container .picList .item:hover p {
    color: #dd692f;
}

.teamMien .container .picList .item p {
    padding: 16px;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: #333;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    background: #f1f1f1;
}


.teamMien .container .picList .item:hover p {
    background: #fff;
}


.layui-layer-page .layui-layer-content {
    overflow: initial !important;
}

.headquarters {
    padding: 80px 0 100px;
}

.headquarters .page-title {
    border-bottom: 1px solid #d9d9d9;
}

.headquarters .container .company {
    color: #333333;
    font-size: 30px;
    padding-top: 44px;
}

.headquarters .container .company-info {
    color: #333333;
    font-size: 30px;
    padding-top: 40px;
}

.headquarters .container .company-info li {
    font-size: 20px;
    color: #666666;
    margin-bottom: 26px;
}

.headquarters .container .company-info li .img {
    display: inline-block;
    vertical-align: middle;
    width: 40px;
}

.headquarters .container .company-info li span {
    display: inline-block;
    vertical-align: middle;
}

.headquarters .container .company-info li.active {
    color: #dd692f;
}

.wareHousing {
    padding: 80px 0 90px;
}

.wareHousing .housing {
    width: 100%;
    position: relative;
    -webkit-box-shadow: 0 0 10px darkgrey;
    -moz-box-shadow: 0 0 10px darkgrey;
    box-shadow: 0 0 10px darkgrey;
}

.wareHousing .housing .map {
    width: 63.3333%;
    float: left;
}

.wareHousing .housing .map .map-container {
    width: 100%;
    height: 580px;
    background: #ebeef0;
}


#charts {
    width: 100%;
    /* height:580px; */
    height: 640px;
    background: #ebeef0 !important;
}


.wareHousing .housing .map .bottom {
    color: #d9d9d9;
    background: #1e2f67;
    padding: 18px 14px;
}

.wareHousing .housing .map .bottom p,
.wareHousing .container .housing .map .bottom h4 {
    color: #fff;
    display: inline-block;
    vertical-align: text-bottom;
}

.wareHousing .housing .map .bottom h4 {
    font-size: 16px;
}

.wareHousing .housing .map .bottom p {
    font-size: 13px;
    margin-right: 14px;
}

.wareHousing .housing .map .bottom p span {
    font-size: 22px;
    line-height: 17px;
}

.wareHousing .housing .areaSelect {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 36.6667%;
}

.wareHousing .housing .areaSelect .main-select {
    width: 100%;
    padding: 26px 30px 15px;
}

.wareHousing .housing .areaSelect .main-select .city {}

.wareHousing .housing .areaSelect .main-select .city img {
    float: left;
}

.wareHousing .housing .areaSelect .main-select .city p {
    float: left;
    line-height: 20px;
    color: #595959;
    margin-left: 20px;
}

.wareHousing .housing .areaSelect .main-select .result {
    color: #dd692f;
    margin-top: 14px;
}

.wareHousing .housing .areaSelect .main-select .selection {
    background: #f2f5f7;
    font-size: 14px;
    color: #808080;
    border: 1px solid #f2f5f7;
    width: 100%;
    padding: 6px;
    margin-top: 15px;
    height: 46px;
}

.wareHousing .housing .areaSelect .warehouse-slider {
    text-align: left;
    padding: 0 30px;
}

.wareHousing .housing .areaSelect .warehouse-slider .item {
    padding: 10px;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}

.wareHousing .housing .areaSelect .warehouse-slider .item:hover {
    background: #f2f5f7;
}

.wareHousing .housing .areaSelect .warehouse-slider .item img {
    border-radius: 4px;
    float: left;
    /* width: 27.7%; */
    height: 70px;
    width: 90px;
}

.wareHousing .housing .areaSelect .warehouse-slider .item .text {
    float: left;
    width: 72.3%;
    padding-left: 18px;
}

.wareHousing .housing .areaSelect .warehouse-slider .item .text p {
    font-size: 14px;
    color: #808080;
    line-height: 20px;
    padding-bottom: 8px;
}

.wareHousing .housing .areaSelect .warehouse-slider .item .text p span {
    float: left;
    width: 28%;
}

.wareHousing .housing .areaSelect .warehouse-slider .item .text p i {
    float: left;
    width: 72%;
    color: #333333;
}

.wareHousing .housing .areaSelect .warehouse-slider .flex-direction-nav {
    width: auto;
    right: 23px;
    bottom: 16px;
    z-index: 10;
}

.wareHousing .housing .areaSelect .warehouse-slider.carrousel {
    overflow: visible;
    position: static;
    /* height: 392px; */
    overflow: hidden;
    height: 470px;
}

.win-slider.slides li {
    height: 300px;
}




.wareHousing .housing .areaSelect .warehouse-slider .num {
    position: absolute;
    right: 106px;
    bottom: 16px;
    font-size: 0;
}

.wareHousing .housing .areaSelect .warehouse-slider .num span {
    font-size: 16px;
    line-height: 24px;
    color: #666666;
    display: inline-block;
    vertical-align: middle;
}

.wareHousing .housing .areaSelect .warehouse-slider .flex-direction-nav a {
    margin: 0 7px;
}

.wareHousing .housing .areaSelect .warehouse-slider .flex-direction-nav a.flex-disabled {
    opacity: 1 !important;
    filter: alpha(opacity=1) !important;
    z-index: 1;
}

.wareHousing .housing .areaSelect .bottom {
    width: 100%;
    padding: 18px 30px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-top: 1px solid #cfd2d9;
    padding-left: 39px;
}


.wareHousing .housing .areaSelect .bottom .sbtn {
    font-size: 18px;
    color: #666666;
    margin-right: 30px;
}

.wareHousing .housing .areaSelect .bottom .active {
    color: #dd692f;
}

.wareHousing .housing .areaSelect .bottom .sbtn:hover {
    color: #dd692f;
}


.help {
    padding: 64px 0 36px;
}

.help .container .item {
    margin-bottom: 34px;
}

.help .container .item .title {
    color: #333333;
    font-size: 20px;
    font-weight: bold;
    padding: 16px 0;
    border-bottom: 1px solid #e4e4e4;
}

.help .container .item .title span {
    display: block;
    padding-left: 13px;
    border-left: 2px solid #dd692f;
}

.help .container .item .links {
    padding: 30px 14px;
}

.help .container .item .links .link {
    color: #4c4c4c;
    margin-right: 64px;
    cursor: pointer;
}

.help .container .item .links .link:hover {
    color: #e07843;
}

.suggestComplaints {
    padding: 80px 0 100px;
}

.suggestComplaints .container .sc-main {
    padding: 50px 42px;
    min-height: 530px;
    -webkit-box-shadow: 0 0 5px darkgrey;
    -moz-box-shadow: 0 0 5px darkgrey;
    box-shadow: 0 0 5px darkgrey;
}

.suggestComplaints .container .sc-main .title {
    font-size: 24px;
    color: #333333;
}

.suggestComplaints .container .sc-main .description {
    font-size: 18px;
    line-height: 30px;
    color: #4c4c4c;
    margin-top: 22px;
}

.suggestComplaints .container .sc-main .phone {
    font-size: 18px;
    color: #4c4c4c;
    margin-top: 60px;
}

.suggestComplaints .container .sc-main .phone span {
    color: #dd692f;
}

.copyRight {
    padding: 80px 0 100px;
}

.copyRight .container .cr-text {
    padding: 50px 43px;
    min-height: 700px;
    -webkit-box-shadow: 0 0 5px darkgrey;
    -moz-box-shadow: 0 0 5px darkgrey;
    box-shadow: 0 0 5px darkgrey;
}

.copyRight .container .cr-text .title {
    font-size: 24px;
    color: #333333;
    margin-bottom: 20px;
}

.copyRight .container .cr-text .title:first-child {
    margin-top: 0;
}

.copyRight .container .cr-text .description {
    font-size: 18px;
    line-height: 30px;
    color: #4c4c4c;
    margin-bottom: 58px;
}


.news-details {
    padding: 80px 0 90px;
}

.news-details .container .content {
    width: 100%;
    padding: 58px 0 60px;
    margin-bottom: 44px;
    margin-top: 10px;
    -webkit-box-shadow: 0 0 3px darkgrey;
    -moz-box-shadow: 0 0 3px darkgrey;
    box-shadow: 0 0 3px darkgrey;
}

.news-details .container .content .title {
    text-align: center;
    color: #333333;
    font-size: 24px;
    line-height: 32px;
    padding: 0 80px 36px;
}

.news-details .container .content .bread {
    font-size: 14px;
    color: #333333;
    line-height: 22px;
    padding: 10px 80px;
    background: #e1e1e1;

}

.news-details .container .content .bread .time {
    padding-right: 24px;
}

.news-details .container .content .bread .back {
    font-size: 14px;
    color: #333333;
}

.news-details .container .content .bread .back img {
    margin-left: 8px;
    display: inline-block;
    vertical-align: bottom;
}

.news-details .container .content .mainbody {
    padding: 32px 80px 0;
}

.news-details .container .content .mainbody .smtit {
    font-size: 20px;
    margin-top: 30px;
    color: #4c4c4c;
    text-align: left;
}

.news-details .container .content .mainbody p {
    font-size: 16px;
    line-height: 28px;
    color: #4c4c4c;
    text-align: left;
}

.news-details .container .content .mainbody img {
    margin: 20px auto 0;
}

.news-details .container .content .share {
    width: 100%;
    padding: 0 80px;
    display: none;
}

.news-details .container .content .share p {
    display: inline-block;
    vertical-align: middle;
    color: #666464;
}

.news-details .container .content .share .icon {
    float: left;
    display: table;
    text-align: center;
    margin-left: 20px;
    width: 40px;
    height: 40px;
    background: #e1e1e1;
    border-radius: 60px;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}

.zwx {
    background: #e1e1e1 url('../images/wechat.png') no-repeat center center !important;
    width: 40px !important;
    height: 40px !important;
    display: inline-block !important;
    vertical-align: middle !important;
    margin-left: 20px;
    border-radius: 50%;
    margin: 0px !important;
    margin-left: 10px !important;
}

.zwb {
    background: #e1e1e1 url('../images/sina.png') no-repeat center center !important;
    width: 40px !important;
    height: 40px !important;
    display: inline-block !important;
    vertical-align: middle !important;
    margin-left: 20px;
    border-radius: 50%;
    margin: 0px !important;
    margin-left: 10px !important;
}

.fx_box {
    display: inline-block;
    vertical-align: middle;
}

.bd_weixin_popup {
    width: 260px !important;
    height: 300px !important;
}




.news-details .container .content .share .icon img {
    margin: 0 auto;
}

.news-details .container .content .share .icon:hover {
    background: #fff;
}

.news-details .container .prenext {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 50px 0;
}

.news-details .container .links {
    height: 30px;
}

.news-details .container .links a {
    display: block;
    color: #4c4c4c;
    /* line-height: 30px; */
    line-height: 20px;
    margin-top: 5px;
}

.news-details .container .links a:first-child {
    float: left;
}

.news-details .container .links a:last-child {
    float: right;
}

.news-details .container .links a:hover {
    color: #dd692f;
}

.storageManagement {
    padding-top: 80px;
}

.storageManagement .sm1 {
    text-align: center;
    padding: 30px 0 74px;
}

.storageManagement .sm1 .item:hover h4 {
    color: var(--primary-color);
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}

.storageManagement .sm1 .item:hover .line {
    background: #dd692f;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}



.storageManagement .sm1 .item .icon-box {
    height: 93px;
}

.storageManagement .sm1 .item .icon-box img {
    margin: 0 auto;
}

.storageManagement .sm1 .item h4 {
    font-size: 20px;
    color: #333;
    padding-top: 34px;
}

.storageManagement .sm1 .item .line {
    width: 34px;
    height: 2px;
    background-color: #4d4d4d;
    margin: 20px auto 15px;
}

.storageManagement .sm1 .item p {
    font-size: 18px;
    color: #595959;
    line-height: 28px;
    padding: 0 18px;
}

.storageManagement .sm2 {
    background-color: #f2f5f7;
    padding: 80px 0;
    text-align: center;
}

.storageManagement .sm2 .text-box {
    display: inline-block;
    position: relative;
}

.storageManagement .sm2 .text-box .text {
    position: absolute;
    width: 200px;
}

.storageManagement .sm2 .text-box .text.tl {
    text-align: left;
}

.storageManagement .sm2 .text-box .text.tr {
    text-align: right;
}

.storageManagement .sm2 .text-box .text h5 {
    font-size: 22px;
    color: #333;
    padding-bottom: 10px;
}

.storageManagement .sm2 .text-box .text li {
    font-size: 18px;
    color: #595959;
    line-height: 30px;
}

.storageManagement .sm3 {
    padding: 83px 0;
}

.storageManagement .sm3 h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.storageManagement .sm3 .img-box {
    padding-top: 8px;
}

.storageManagement .sm3 .img-box img {
    margin: 0 auto;
}

.storageManagement .sm4 {
    /* background-color: #f2f5f7; */
    padding: 80px 0;
}

.storageManagement .sm4 .row {
    margin: 0 -20px;
}

.storageManagement .sm4 .col-bg-6 {
    padding: 0 20px;
}

.storageManagement .sm4 .item {
    background-color: #f2f5f7;
}

.storageManagement .sm4 .item .img-box {
    overflow: hidden;
}

.storageManagement .sm4 .item .img-box img {
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
}

.storageManagement .sm4 .item:hover .img-box img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
}

.storageManagement .sm4 .item:hover h5 {
    color: var(--primary-color);
}



.storageManagement .sm4 .item .img-box img {
    width: 100%;
}

.storageManagement .sm4 .item h5 {
    font-size: 22px;
    color: #333;
    line-height: 70px;
    text-align: center;
}

.storageManagement .sm5 {
    padding: 80px 0 60px;
    text-align: center;
    background: #f2f5f7;
}

.storageManagement .sm5 .area {
    display: inline-block;
}

.storageManagement .sm5 .area .img {
    width: 61.6666%;
}

.storageManagement .sm5 .area .text {
    max-width: 38.3333%;
    text-align: left;
    padding-left: 24px;
    padding-top: 26px;
}

.storageManagement .sm5 .area .text li {
    font-size: 22px;
    color: #333;
    margin-bottom: 60px;
    margin-top: 5px;
}




.storageManagement .sm6 {
    background-color: #f2f5f7;
    padding: 110px 0 120px;
}

.storageManagement .sm6 .ware-list {}

.storageManagement .sm6 .ware-list .item {
    width: 25%;
    float: left;
}

.storageManagement .sm6 .ware-list .item .img-box img {
    width: 100%;
}

.storageManagement .sm6 .ware-list .item .text {
    height: 90px;
    text-align: center;
}

.storageManagement .sm6 .ware-list .item .img-box {
    overflow: hidden;
}

.storageManagement .sm6 .ware-list .item .img-box img {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}

.storageManagement .sm6 .ware-list .item:hover .img-box img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
}

.storageManagement .sm6 .ware-list .item:hover .text h4 {
    color: var(--primary-color);
}

.storageManagement .sm6 .ware-list .item:hover .line {
    background: var(--primary-color);
}




.storageManagement .sm6 .ware-list .text h4 {
    font-size: 22px;
    color: #333;
    padding: 28px 0 15px;
}

.storageManagement .sm6 .ware-list .text .line {
    width: 23px;
    height: 2px;
    background-color: #595959;
    margin: 0 auto;
}

.storageManagement .sm7 {
    padding: 80px 0;
}

.storageManagement .sm7 .text {
    width: 46.6666666%;
    padding-right: 126px;
}

.storageManagement .sm7 .img-box {
    position: relative;
}

.storageManagement .sm7 .img-box .policy-list {
    position: absolute;
    top: 50px;
    left: 0;
    margin-left: -38px;
}

.storageManagement .sm7 .img-box .policy-list li {
    width: 76px;
    height: 76px;
    background-color: #fff;
    border: 2px solid #fd8836;
    border-radius: 100%;
    font-size: 24px;
    line-height: 72px;
    text-align: center;
    color: #fd8836;
    margin-bottom: 32px;
    -webkit-transition: all ease 0.6s;
    -moz-transition: all ease 0.6s;
    -ms-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
}

.storageManagement .sm7 .img-box .policy-list li:hover {
    background-color: #fd8836;
    color: #fff;
}

.storageManagement .sm7 .text h4 {
    font-size: 30px;
    color: #333;
    padding: 138px 0 32px;
}

.storageManagement .sm7 .text p {
    font-size: 18px;
    line-height: 30px;
    color: #595959;
}

.storageManagement .sm8 {
    padding: 80px 0 94px;
    background-color: #eceff1;
}

.storageManagement .sm8 .range-des {
    padding-bottom: 78px;
}

.storageManagement .sm8 .text-box {
    width: 316px;
    background-color: #fff;
    border: 1px solid #fd8836;
    border-radius: 5px;
    padding: 50px 25px 24px;
    min-height: 376px;
    position: relative;
}

.storageManagement .sm8 .text-box h5 {
    font-size: 20px;
    color: #fff;
    line-height: 58px;
    width: 191px;
    text-align: center;
    border-radius: 5px;
    background-color: #fd8836;
    position: absolute;
    left: 63px;
    top: -28px;
}

.storageManagement .sm8 .text-box p {
    font-size: 16px;
    color: #666;
    line-height: 30px;
}

.storageManagement .sm8 .arrow {
    width: 158px;
    height: 92px;
    background: url(../images/productservices-sm8-arrow.png) no-repeat center;
    font-size: 16px;
    line-height: 18px;
    color: #fff;
    padding: 28px 36px 28px 15px;
    margin: 142px 26px 0;
}

.storageManagement .sm8 .img-box {
    position: relative;
    top: -20px;
}

.storageManagement .sm9 {
    padding: 80px 0;
}

.storageManagement .sm9 .range-title {
    color: #333;
}

.storageManagement .sm9 .range-des {
    padding-bottom: 16px;
}

.storageManagement .sm9 .low {
    min-height: 260px;
    background-repeat: no-repeat;
    background-position: right top;
}

.storageManagement .sm9 .low {
    margin-top: 16px;
    position: relative;
}

.storageManagement .sm9 .low h5 {
    font-size: 20px;
    color: #404040;
    padding-bottom: 18px;
    padding-top: 13px;
}

.storageManagement .sm9 .low ul {
    /* min-width: 345px; */
    min-width: 290px;
}

.storageManagement .sm9 .low ul li {
    font-size: 18px;
    /* line-height: 30px; */
    line-height: 1.6;
    margin-bottom: .5em;
    color: #595959;
    padding-left: 14px;
    position: relative;
}

.storageManagement .sm9 .low ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .6em;
    width: 2px;
    height: 2px;
    border: 2px solid #fe7f38;
    border-radius: 100%;
}

.storageManagement .sm9 .low {
    display: flex;
    justify-content: space-between;
}

.storageManagement .sm9 .low .left-content {
    width: 50%;
}

.storageManagement .sm9 .low .img-box {
    width: 45%;
}

.storageManagement .sm9 .low .img-box img {
    width: 100%;
}

/* .storageManagement .sm9 .low .img-box {
    position: absolute;
    top: 35%;
    right: 0;
    overflow: hidden;
} */

.storageManagement .sm9 .low .img-box img {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}

.storageManagement .sm9 .low .img-box:hover img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
}


.storageManagement .sm10 {
    background-color: #f2f5f7;
    padding: 98px 0;
}

.storageManagement .case-logo-box {
    margin-top: 40px;
}

.case-logo-box {
    overflow: hidden;
}

.case-logo-box .case-logos {
    position: relative;
    bottom: -1px;
    left: -1px;
}

.case-logo-box .case-logos li {
    float: left;
    width: 16.6666%;
    height: 103px;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    display: table;
    position: relative;
}

.case-logo-box .case-logos li img {
    margin: 0 auto;
    max-height: 85px;
}


.tranServices {
    padding-top: 80px;
}

.tranServices .img-box img {
    margin: 0 auto;
}

.tranServices .fl {
    position: relative;
}

.tranServices .fl .img {
    overflow: hidden;
}

.tranServices .fl .img img {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}

.tranServices .fl .img:hover img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
}


.tranServices .range-title {
    color: #333;
}

.tranServices .ts1 {
    padding: 12px 0 80px;
}

.tranServices .ts1 .item-box {
    padding-top: 36px;
    margin: 0 -6%;
}

.tranServices .ts1 .item {
    float: left;
    width: 16.6666%;
    text-align: center;
}

.tranServices .ts1 .item:hover p {
    color: var(--primary-color);
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}

.tranServices .ts1 .item img {
    margin: 0 auto;
}

.tranServices .ts1 .item p {
    font-size: 24px;
    /* font-weight: 600; */
    line-height: 30px;
    color: #4c4c4c;
    padding-top: 26px;
}

.tranServices .ts2 {
    background-color: #f2f5f7;
    padding: 68px 0 70px;
}

.tranServices .ts2 .text {
    width: 37%;
    padding-right: 71px;
    padding-top: 135px;
}

.tranServices .ts2 .text p {
    line-height: 30px;
}

.tranServices .ts2 .addrs .addr {
    position: absolute;
}

.tranServices .ts2 .addrs .addr .spot {
    width: 34px;
    height: 34px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/transer-map-addr.png);
    transition: all 0.2s;
}

.tranServices .ts2 .addrs .addr-info {
    width: 258px;
    height: 119px;
    padding: 14px 0 0 20px;
    background: url(../images/transer-map-textbg.png) no-repeat center;
    position: absolute;
    bottom: 17px;
    right: -7px;
    z-index: 100;
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
    transition: all 0.2s;
}

.tranServices .ts2 .addrs .addr-info h5 {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    padding-bottom: 4px;
    margin-left: 40px;
    margin-top: 15px;
}

.tranServices .ts2 .addrs .addr-info p {
    font-size: 14px;
    color: #666666;
}

.tranServices .ts2 .addrs .addr-info span {
    font-size: 24px;
    color: #fd8c08;
    padding-right: 8px;
}

.tranServices .ts2 .addrs .spot:hover {
    background-image: url(../images/transer-map-addractive.png);
}

.tranServices .ts2 .addrs .spot:hover+.addr-info {
    opacity: 100;
    filter: alpha(opacity=100);
    visibility: visible;
}

.tranServices .ts2 .addrs-wap {
    display: none;
}

.tranServices .ts3 {
    padding: 80px 0;
}

.tranServices .ts3 .psitem-text {
    color: #666666;
}

.tranServices .ts3 .img-box {
    padding-top: 25px;
}

.tranServices .ts4 {
    background-color: #f2f5f7;
    padding: 80px 0 60px;
}

.tranServices .ts4 .text {
    width: 50.8%;
    padding-right: 30px;
}

.tranServices .ts4 .text h5 {
    font-size: 20px;
    line-height: 30px;
    padding: 14px 0 8px;
}

.tranServices .ts4 .img-box {
    width: 48.2%;
    padding-top: 28px;
}

.tranServices .ts5 {
    padding: 80px 0 90px;
}

.tranServices .ts5 .item-box {
    padding: 50px 76px 0;
}

.tranServices .ts5 .item-box .item {
    float: left;
    width: 25%;
    text-align: center;
}

.tranServices .ts5 .item-box .item img {
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
}

.tranServices .ts5 .item-box .item:hover img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
}

.tranServices .ts5 .item-box .item:hover p {
    color: var(--primary-color);
}


.tranServices .ts5 .item img {
    margin: 0 auto;
}

.tranServices .ts5 .item p {
    font-size: 20px;
    line-height: 1;
    color: #333;
    padding-top: 30px;
}

.tranServices .ts6 {
    padding: 80px 0 130px;
    background-color: #f2f5f7;
}

.tranServices .ts6 .img-box {
    padding-top: 96px;
}

.tranServices .ts7 {
    padding: 80px 0;
}

.tranServices .ts7 h5 {
    font-size: 20px;
    line-height: 1;
    color: #4c4c4c;
    padding-bottom: 24px;
}

.tranServices .ts7 .img-box {
    padding-top: 30px;
}

.tranServices .ts8 {
    padding: 70px 0 60px;
    background-color: #f2f5f7;
}

.tranServices .ts8 .img-box {
    padding-top: 28px;
}

.tranServices .ts8 .img-box .left {
    float: left;
}

.tranServices .ts8 .img-box .right {
    float: right;
}

.tranServices .ts9 {
    padding: 80px 0;
}

.tranServices .ts9 .img-box {
    padding-top: 48px;
}

.tranServices .ts10 {
    padding: 80px 0;
    background-color: #f2f5f7;
}

.tranServices .ts10 .range-title {
    padding-bottom: 36px;
}

.tranServices .ts10 .text {
    color: #595959;
    width: 46%;
}

.tranServices .ts10 .text h4 {
    font-size: 20px;
    line-height: 30px;
    padding: 3px 0 10px;
}

.tranServices .ts10 .text .high h4 {
    color: #1a1a1a;
}

.tranServices .ts10 .text ul li {
    padding-left: 18px;
    font-size: 18px;
    /* line-height: 30px; */
    line-height: 1.6;
    margin-bottom: .5em;
    color: #595959;
    position: relative;
}

.tranServices .ts10 .text ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .6em;
    width: 2px;
    height: 2px;
    border: 2px solid #fe7f38;
    border-radius: 100%;
}

.tranServices .ts10 .text .low {
    padding-top: 14px;
}

.tranServices .ts10 .text .low .fl {
    float: left;
    width: 50%;
}

.num-list {
    padding-top: 15px;
    margin: 0 -20px;
}

.num-list p {
    display: flex;
    align-items: center;
}

.num-list li {
    float: left;
    width: 16.6666%;
    padding: 0 40px;
    font-size: 18px;
    /* line-height: 30px; */
    line-height: 1.6;
    color: #ff7b35;
    text-transform: uppercase;
}

.num-list li strong {
    font-size: 44px;
}

.tranServices .ts11 {
    padding: 80px 0;
}

.tranServices .ts11 .case-logo-box {
    margin-top: 36px;
}

/* 进程管理 */
.wrapper {
    display: inline-flex;
}

.wrapper .icon {
    position: relative;
    background-color: #188def;
    border-radius: 30px;
    margin-left: 80px;
    width: 120px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon .img1 {
    /* background: url(../images/processicon-.png) no-repeat; */
    width: 33px;
    height: 33px;
}

.wrapper .icon .img1 {
    /* background: url(../images/processicon-.png) no-repeat; */
    width: 33px;
    height: 33px;
}

.wrapper .icon .img1 {
    /* background: url(../images/processicon-.png) no-repeat 5px 0px; */
    width: 33px;
    height: 33px;
}

.wrapper .icon .img2 {
    /* background: url(../images/processicon-.png) no-repeat -100px 0px; */
    width: 33px;
    height: 33px;
}

.wrapper .icon .img3 {
    /* background: url(../images/processicon-.png) no-repeat -170px 0px; */
    width: 33px;
    height: 33px;
}

.wrapper .icon .img4 {
    /* background: url(../images/processicon-.png) no-repeat -235px 0px; */
    width: 33px;
    height: 33px;
}

.wrapper .icon .img5 {
    /* background: url(../images/processicon-.png) no-repeat -305px 0px; */
    width: 33px;
    height: 33px;
}

.wrapper .icon .img6 {
    /* background: url(../images/processicon-.png) no-repeat -370px -5px; */
    width: 33px;
    height: 33px;
}

.wrapper .icon span {
    /* margin-left: 10px; */
    color: #fff;
}

.wrapper .icon:hover {
    box-shadow: 0px 0px 0px 9px rgba(24, 141, 239, 0.5);
}

.wrapper .triangle {
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-right-color: rgba(160, 211, 211, );
}


.Tri {
    position: absolute;
    top: 20px;
    left: 155px;
    width: 0;
    height: 0;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent transparent rgb(168, 213, 255);
}

/*  */

/*  */


/*  */
.hrServices {
    padding-top: 80px;
}

.hrServices .hs1 {
    padding-bottom: 80px;
    /* background: #f2f5f7; */
}

.hrServices .hs1 .setting {
    padding: 0px 0px 0px;
    background: url(../images/hr-ser-bg1.png) no-repeat right center;
}


.hrServices .z_hs1 {
    background: #f2f5f7;
    padding-top: 80px;
}



.hrServices .hs1 .setting h3 {
    font-size: 24px;
    color: #4c4c4c;
    padding-bottom: 20px;
}

.hrServices .hs1 .logos .img-box {
    width: 120px;
    height: 120px;
    /* margin: 30px 0; */
    margin-top: 30px;
}

.hrServices .hs1 .info {
    padding-top: 20px;
    padding-left: 45px;
    max-width: 100%;
    width: 60%;
}

.hrServices .hs1 .info li {
    font-size: 16px;
    color: #666;
    padding: 28px 0;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    padding-left: 40px;
    position: relative;
}

.hrServices .hs1 .info li:hover {
    color: #188def;
}

.hrServices .hs1 .info li:hover .num:after {
    width: 50px;
    background-color: #188def;
}

.hrServices .hs1 .info li span {
    display: inline-block;
    vertical-align: bottom;
    line-height: 25px;
}

.hrServices .hs1 .info li .num {
    font-size: 18px;
    padding-bottom: 7px;
    /* position: relative; */
    position: absolute;
    left: 0px;
}

.hrServices .hs1 .info li .num:after {
    content: "";
    width: 30px;
    height: 2px;
    background-color: #999999;
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.hrServices .hs2 {
    padding: 80px 0 80px;
    background-color: #f2f5f7;
}

.hrServices .hs2 .items {
    padding: 58px 0 0;
    position: relative;
    background: url(../images/hr-ser-line.png) repeat-x center 150px;
    text-align: center;
}

.hrServices .hs2 .items .item:hover .yuan {
    border-color: #188def;
}

.hrServices .hs2 .items .item:hover .yuan:after {
    background-color: #188def;
}

.hrServices .hs2 .items .item:hover .icon-box .halo {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.hrServices .hs2 .items .item:hover .text {
    color: #188def;
}

.hrServices .hs2 .items .icon-box {
    position: relative;
    display: inline-block;
    vertical-align: bottom;
}

.hrServices .hs2 .items .icon-box .icon {
    background-color: #188def;
    width: 64px;
    height: 64px;
    padding: 17px 0;
    border-radius: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hrServices .hs2 .items .icon-box .halo {
    width: 86px;
    height: 86px;
    background-color: #188def;
    opacity: 0.5;
    filter: alpha(opacity=0.5);
    position: absolute;
    top: -11px;
    left: -11px;
    border-radius: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.hrServices .hs2 .items .icon-box .icon img {
    margin: 0 auto;
}

.hrServices .hs2 .items .item .yuan {
    position: relative;
    z-index: 10;
    width: 15px;
    height: 15px;
    border: 2px solid #808080;
    border-radius: 100%;
    margin: 22px auto 30px;
    background-color: #fff;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.hrServices .hs2 .items .item .yuan:after {
    content: "";
    width: 3px;
    height: 3px;
    background-color: #808080;
    position: absolute;
    left: 4px;
    top: 4px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.hrServices .hs2 .items .text {
    font-size: 20px;
    color: #4c4c4c;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.hrServices .hs3 {
    padding: 80px 0;
}

.hrServices .hs3 .aim {
    margin: 0 -30px;
    padding-top: 13px;
}

.hrServices .hs3 .aim .col-bg-3 {
    /* padding: 0 30px; */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hrServices .hs3 .aim .col-bg-3 .hid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
    background-color: #188def;
    transition: all .5s;
    border-left: 15px solid #f2f5f7;
    border-right: 15px solid #f2f5f7;
    box-sizing: border-box;
    padding: 30px;
}

.hrServices .hs3 .aim .col-bg-3:hover .hid {
    cursor: pointer;
    transform: translateY(0);
}

.hrServices .hs3 .aim .col-bg-3 .hid .textTit {
    color: #fff;
    font-size: 18px;
    line-height: 70px;
}

.hrServices .hs3 .aim .col-bg-3 .hid .textCon {
    color: #fff;
    font-size: 14px;
    text-align: left;
    line-height: 20px;
}

.hrServices .hs3 .aim .item {
    box-shadow: 0px 0px 9px -3px rgba(0, 0, 0, 0.3);
}

.hrServices .hs3 .aim .item .img-box img {
    width: 100%;
}

.hrServices .hs3 .aim .item .img-box {
    overflow: hidden;
}

.hrServices .hs3 .aim .item {
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}

.hrServices .hs3 .aim .item .img-box img {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}

/* .hrServices .hs3 .aim .item:hover .img-box img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
} */

.hrServices .hs3 .aim .item:hover p {
    color: #188def;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}


.hrServices .hs3 .aim .item p {
    font-size: 18px;
    line-height: 30px;
    color: #595959;
    letter-spacing: 1px;
    padding: 16px 10px 18px;
    background: #eef4fb;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}

.hrServices .hs3 .aim .item:hover p {
    background: #fff;
}


.softDevelopment {
    padding-top: 80px;
}

.softDevelopment .range-des {
    color: #595959;
}

.softDevelopment .sd1 {
    padding-bottom: 74px;
}

.softDevelopment .sd1 .img-box {
    padding-top: 32px;
}

.softDevelopment .sd2 .item {
    height: 620px;
}

.softDevelopment .sd2 .item .container {
    height: 100%;
}

.softDevelopment .sd2 .icon-left {
    background-color: #fff;
}

.softDevelopment .sd2 .icon-right {
    background-color: #f0f3f5;
}

.softDevelopment .sd2 .icon-left .text {
    float: right;
}

.softDevelopment .sd2 .icon-left .icon-box {
    float: left;
}

.softDevelopment .sd2 .icon-right .icon-box {
    float: right;
}

.softDevelopment .sd2 .icon-right .text {
    float: left;
}

.softDevelopment .sd2 .text {
    max-width: 41.66666%;
    display: table;
    height: 100%;

}

.softDevelopment .sd2 .icon-box {
    max-width: 58.33333333%;
    display: table;
    height: 100%;
}

.softDevelopment .sd2 .text .title {
    font-size: 24px;
    font-weight: bold;
    color: #188def;
    padding-bottom: 22px;
}

.softDevelopment .sd2 .text p {
    font-size: 18px;
    line-height: 30px;
    color: #595959;
    padding-bottom: 14px;
}

.softDevelopment .sd2 .text .Orangetouming {
    padding: 8px 17px;
}


.fudong {
    position: fixed;
    right: 0px;
    z-index: 999;
    top: 50%;
    margin-top: -61px;
}

.fudong ul li {
    display: block;
    margin: 3px 0px;
    /*background: rgba(255,255,255,0.2);*/
    background: #0b426b;
    cursor: pointer;
    position: relative;
    padding: 10px 12px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    text-align: center;
}

.fudong ul li .img {
    display: inline-block;
}

.fudong ul li a {
    display: block;
}

.fudong ul li .text {
    position: absolute;
    top: 0px;
    height: 72px;
    line-height: 72px;
    right: 0px;
    background: var(--primary-color);
    text-align: right;
}

.fudong ul li .text i {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    color: #fff;
    margin-right: 5px;
    margin-top: -3px;
}

.fudong ul li .text em {
    display: inline-block;
    vertical-align: middle;
    padding: 0px 10px;
    margin-top: -3px;
}

.fudong ul li .text .txt {
    height: 36px;
    padding: 0px 15px;
    width: 140px;
    border-radius: 30px;
    background: #fff;
    display: inline-block;
    vertical-align: middle;
}

.fudong ul li span {
    color: #fff;
    font-size: 14px;
    color: #d8ebf9;
    margin-top: 6px;
    display: block;
}

.fudong ul li .text1 {
    width: 137px;
    right: 0px;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    right: -137px;
}

.fudong ul li .text2 {
    width: 220px;
    right: 0px;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    right: -220px;
}

.fudong ul li .text3 {
    position: absolute;
    right: 96px;
    top: -29px;
    width: 130px;
    height: 130px;
    background: #fff;
    display: none;
}

.fudong ul li .text3:after {
    content: '';
    position: absolute;
    border: 8px solid;
    border-color: transparent transparent transparent #fff;
    top: 50%;
    margin-top: -8px;
    right: -15px;
    z-index: 99;
}

.fudong ul li:hover .text {
    right: 0px;
}

.fudong ul li:hover.fd_click {
    background: #d77236;
}

.fudong ul .fd_click {
    display: none;
}

.fudong ul .wx:hover {
    background: var(--primary-color);
}

/* .BMap_cpyCtrl { display: none!important; } */

.phone-btn-div {
    display: none;
}

.footer .top .fl .item {
    display: block;
}

.storageManagement .sm5 .area .img2 {
    display: none;
}

.wareHousing .housing .map .map_img {
    display: none;
}


.history_list {
    background: #fff;
    -webkit-box-shadow: 0 0 6px darkgrey;
    -moz-box-shadow: 0 0 6px darkgrey;
    box-shadow: 0 0 6px darkgrey;
    padding: 70px;
    position: relative;
}

.history_list h2 img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    margin-left: -12px;
    margin-top: -5px;
}

.history_list h2 {
    color: #dd692f;
    font-size: 24px;
    position: relative;
    z-index: 3;
}

.history_list ul li {
    position: relative;
    padding-left: 100px;
    margin-top: 40px;
    z-index: 3;
}

.history_list ul li .icon {
    display: block;
    position: absolute;
    top: 50px;
    left: 0px;
    width: 22px;
    height: 22px;
    background: #dd692f;
    border-radius: 50%;
}

.history_list ul li .icon:before {
    content: '';
    background: #fff;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    margin-top: -3px;
    margin-left: -3px;
}

.history_list ul li strong {
    background: #dd692f;
    color: #fff;
    font-size: 20px;
    border-radius: 20px;
    padding: 5px 22px;
    position: absolute;
    left: 60px;
    font-weight: normal;
    top: 45px;
}

.history_list ul li .con {
    background: #f0f3f5;
    padding: 35px;
    border-radius: 5px;
    padding-left: 90px;
}

.history_list ul li .icon:after {
    content: '';
    width: 28px;
    height: 2px;
    background: #dd692f;
    position: absolute;
    left: 27px;
    top: 50%;
    margin-top: -1px;
}

.history_list ul li .con .img {
    width: 220px;
    height: 140px;
    border-radius: 5px;
    overflow: hidden;
    float: left;
}

.history_list ul li .con .img img {
    width: 100%;
    height: 100%;
}

.history_list ul li .con .text {
    margin-left: 250px;
    font-size: 16px;
    line-height: 32px;
}

.history_con {
    position: relative;
}

.history_con:after {
    content: '';
    background: #d9d9d9;
    left: 10px;
    position: absolute;
    height: 100%;
    width: 1px;
    top: 0px;
}

.storageManagement .sm2 .text-box .text.tr i {
    display: none;
}

.storageManagement .sm2 .text-box .text.tl i {
    display: none;
}

.job-slider {
    position: relative;
}

/* .job-slider .flex-viewport { padding-bottom: 50px; } */
.job-slider .flex-control-nav a:after {
    margin-top: 0px;
}

.header .logo {
    width: 115px;
    margin-top: 25px;
}

.zapp .icon1 {
    background: url('../images/androidLogo.png') no-repeat left center;
    width: 19px;
    height: 21px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -5px;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}

.zapp .icon2 {
    background: url('../images/iosLogo.png') no-repeat left center;
    width: 18px;
    height: 21px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -5px;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}

.zapp .icon3 {
    background: url('../images/wx.png') no-repeat left center;
    width: 25px;
    height: 21px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -5px;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
}

.zapp .qr .Orangetouming:hover .icon1 {
    background: url('../images/androidLogo_1.png') no-repeat left center;
}

.zapp .qr .Orangetouming:hover .icon2 {
    background: url('../images/iosLogo_1.png') no-repeat left center;
}

.zapp .qr .Orangetouming:hover .icon3 {
    background: url('../images/wx_1.png') no-repeat left center;
}


.phone_app {
    display: none;
}

.pc_app {
    display: inline-block;
}

.wareHousing .areaSelect .bottom a.active {
    color: #dd692f;
}

.form-main .yzmtext {
    padding-right: 130px;
}

.form-main .yzmtext .txt {
    height: 48px;
    line-height: 48px;
}

.form-main .butbox {
    text-align: right;
}

.form-main .yzmtext .yzm {
    position: absolute;
    right: 0px;
    top: 0px;
}


/* 登录 */
.dialog {
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0%;
    top: 0%;
    display: none;
    z-index: 999;
}

.dialog_bj {
    height: 100%;
    width: 100%;
    background: url(../images/d_mask.png);
    background-size: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

.dialog_pic {
    position: absolute;
    top: 50%;
    right: 50%;
    left: 50%;
    width: 580px;
    height: 380px;
    margin-left: -290px;
    margin-top: -190px;
    background: #fff;
    box-sizing: border-box;
    z-index: 999;
}

.dialog_pic img {
    display: inherit;
    margin: 0 auto;
    margin-top: 70px;
}

.dialog_close {
    width: 50px;
    height: 50px;
    background: url(../images/dialog_close.png) no-repeat center center;
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
}

.dialog_close:hover {
    background: url(../images/dialog_close_hover.png) no-repeat center center;
}


/* -- */


.human {
    padding: 80px 0px;
}

.human h3 {
    font-size: 30px;
    color: #333;
    padding-bottom: 18px;
}

.human strong {
    font-size: 20px;
    text-transform: uppercase;
    color: #333;
}

.human p {
    font-size: 17px;
    color: #333;
    line-height: 30px;
    text-align: justify;
    margin-top: 25px;
}

.human1 {
    padding: 80px 0px;
    background: #f4f5f9;
}

.human1 .tit {
    font-size: 24px;
    color: #333;
}

.human1 .list {
    margin-top: 40px;
}

.human1 .list ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.human1 .list ul li {
    width: 23.1%;
}

.human1 .list ul li .link {
    position: relative;
    display: block;
    cursor: pointer;
}

.human1 .list ul li p {
    position: absolute;
    bottom: 28px;
    width: 100%;
    font-size: 18px;
    color: #fff;
    z-index: 3;
    text-align: center;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
}

.human1 .list ul li .link:after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: url('../images/ha_2.png') repeat-x bottom center;
}

.human1 .list ul li .text {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(25, 38, 47, 0.5);
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    opacity: 0;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
}

.human1 .list ul li .text h3 {
    font-size: 20px;
    position: relative;
}

.human1 .list ul li .text h3:after {
    content: '';
    width: 36px;
    height: 2px;
    background: #fff;
    display: block;
    margin: 0 auto;
    margin-top: 22px;
}

.human1 .list ul li .text span {
    display: inline-block;
    padding: 12px 34px;
    font-size: 16px;
    border-radius: 50px;
    margin-top: 30px;
    background: var(--primary-color);
    color: #fff;
}

.human1 .list ul li .link:hover .text {
    opacity: 1;
}

.human1 .list ul li .link:hover .text h3 {
    animation: fadeInDown 0.6s 0.2s both;
}

.human1 .list ul li .link:hover .text span {
    animation: fadeInUp 0.6s 0.2s both;
}

.human1 .list ul li .link:hover p {
    opacity: 0;
}


.human2 {
    padding: 80px 0px;
}

.human2 .tit {
    font-size: 24px;
    color: #333;
}

.human2 .list ul li {
    margin-top: 40px;
    position: relative;
}

.human2 .list ul li .img {
    width: 56.7%;
    height: 400px;
    overflow: hidden;
}

.human2 .list ul li .img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
}

.human2 .list ul li .con {
    width: 50%;
    position: absolute;
    padding: 50px 0px;
    top: 0px;
    height: 100%;
}

.human2 .list ul li .con .text {
    background: #f4f5f9;
    height: 100%;
    padding: 60px 40px;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
}

.human2 .list ul li .con .text h3 {
    font-size: 24px;
    color: #ff8a05;
}

.human2 .list ul li .con .text p {
    font-size: 16px;
    color: #333;
    line-height: 28px;
    margin-top: 20px;
}

.human2 .list ul li .con .text .wb {
    display: flex;
    flex-direction: column;
    border-left: 2px solid #ff8d09;
    padding-left: 30px;
    height: 100%;
}

.human2 .list ul li:nth-child(2n+1) {
    display: flex;
    flex-direction: row-reverse;
}

.human2 .list ul li:nth-child(2n+1) .con {
    left: 0px;
}

.human2 .list ul li:nth-child(2n) {
    display: flex;
    flex-direction: row;
}

.human2 .list ul li:nth-child(2n) .con {
    right: 0px;
}

.human2 .list ul li:hover .img img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}

.human2 .list ul li:hover .con .text {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    background: #fff;
}


.human3 {
    padding: 80px 0px;
    background: #f4f5f9;
}

.human3 .tit {
    font-size: 24px;
    color: #333;
}

.human3 .item {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

.human3 .item .text {
    width: 50%;
}

.human3 .item .text h3 {
    font-weight: bold;
    font-size: 24px;
    font-weight: bold;
    color: #ff8d09;
}

.human3 .item .text p {
    font-size: 16px;
    line-height: 26px;
    margin-top: 20px;
}

.human3 .item .img {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.human3 .item .img img {
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
}

.human3 .item:hover .img img {
    text-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
}

.human4 {
    padding: 80px 0px;
}

.human4 .tit {
    font-size: 24px;
    color: #333;
}

.human4 .item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.human4 .item .text {
    width: 50%;
}

.human4 .item .text h3 {
    font-weight: bold;
    font-size: 24px;
    font-weight: bold;
    color: #ff8d09;
}

.human4 .item .text p {
    font-size: 16px;
    line-height: 26px;
    margin-top: 20px;
}

.human4 .item .img {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.human4 .item .img img {
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
}

.human4 .item:hover .img img {
    text-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
}

.human_tc {
    width: 100%;
}

.human_tc ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.human_tc {
    overflow-y: auto;
    max-height: 100%;
    padding: 20px 10px;
    padding-top: 10px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.human_tc ul li {
    flex: 1;
    margin: 0px 10px;
    background: #f4f5f9;
    transition: 0.6s;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    -o-transition: 0.6s;
}

.human_tc ul li .img img {
    width: 100%;
}

.human_tc ul li .text {
    padding: 20px;
}

.human_tc ul li .text h3 {
    font-size: 22px;
    color: #f68c05;
}

.human_tc ul li .text p {
    font-size: 16px;
    line-height: 25px;
    color: #333;
    margin-top: 15px;
}

.human_tc ul li:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -o-transform: translateY(-5px);
}


.human_tc4 .list {
    background: url('../images/ha_5.png') no-repeat center 15%;
}

.human_tc4 .list ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}

.human_tc4 .list ul li {
    width: 32%;
}

.human_tc4 .list ul li .con {
    display: flex;
    flex-direction: row;
    margin: 6% 0px;
}

.human_tc4 .list ul li .con .icon {
    flex: 0 0 auto;
    margin-right: 15px;
    width: 50px;
}

.human_tc4 .list ul li .con .text h3 {
    font-size: 20px;
    color: #fd8c08;
}

.human_tc4 .list ul li .con .text p {
    font-size: 14px;
    line-height: 22px;
    margin-top: 15px;
}

.human_tc4 .list ul li:nth-child(2n) .con {
    flex-direction: row-reverse;
}

.human_tc4 .list ul li:nth-child(2n) .con .text {
    text-align: right;
}

.human_tc4 .list ul li:nth-child(2n) .con .icon {
    margin-right: 0px;
    margin-left: 20px;
}

.human_tc4 {
    overflow-y: auto;
    max-height: 100%;
    padding: 20px 20px 0px;
    padding-top: 10px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.human_tc4 .list ul.item {
    justify-content: center;
}

.human_tc4 .list ul.item li {
    width: 60%;
}


.m_set {
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 99;
}


.responsibility_list {
    padding: 80px 0px 100px;
}

.responsibility_list .list {
    padding-bottom: 60px;
}

.responsibility_list .list ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.responsibility_list .list ul li {
    width: 47%;
    padding: 20px 0px;
    border-bottom: 1px solid #eaeaea;
}

.responsibility_list .list ul li .link {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.responsibility_list .list ul li .img {
    width: 250px;
    height: 153px;
    overflow: hidden;
}

.responsibility_list .list ul li .img img {
    width: 100%;
    height: 100%;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
}

.responsibility_list .list ul li .text {
    width: calc(100% - 250px);
    padding-left: 25px;
}

.responsibility_list .list ul li .text h3 {
    font-size: 18px;
    margin-top: 10px;
    color: #333;
}

.responsibility_list .list ul li .text p {
    position: relative;
    margin-top: 20px;
    font-size: 14px;
    color: #999;
}

.responsibility_list .list ul li .text p:before {
    content: '';
    background: url('../images/timg_icon.png') no-repeat center center;
    width: 20px;
    height: 20px;
    background-size: 20px auto;
    display: inline-block;
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 8px;
}

.responsibility_list .list ul li .link:hover .img img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}

.responsibility_list .list ul li .link:hover .text h3 {
    color: #dd692f;
}

.search_box {
    padding: 100px 0px;
    overflow: hidden;
}

.search_box .had h2 {
    font-size: 40px;
    text-align: center;
    color: #333;
}

.search_box .had .put {
    width: 60%;
    margin: 0 auto;
    position: relative;
    margin-top: 50px;
    overflow: hidden;
    border-radius: 8px;
}

.search_box .had .put .txt {
    width: 100%;
    border: 1px solid #aeaeaa;
    padding: 12px 14px;
    padding-right: 80px;
    border-radius: 8px;
    font-size: 14px;
}

.search_box .had .put .but {
    position: absolute;
    right: 0px;
    top: 0px;
    background: #e16831 url('../images/search.png') no-repeat center center;
    height: 100%;
    width: 70px;
}

.search_box .tit {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 40px;
}

.search_box .tit a {
    margin: 0px 20px;
}

.search_box .tit a:before {
    content: '';
    background: url('../images/search_y.png') no-repeat center center;
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
    margin-right: 8px;
}

.search_box .tit a.active:before {
    background: url('../images/search_yc.png') no-repeat center center;
}

.search_box .tit a.active {
    color: #e16831;
}

.search_box .num {
    text-align: center;
    margin-top: 50px;
}

.search_box .num span {
    color: #e16831;
}

.search_box .list {
    margin-top: 60px;
    padding-bottom: 50px;
}

.search_box .list ul li {
    padding: 20px 0px;
    border-bottom: 1px solid #eaeaea;
}

.search_box .list ul li strong {
    display: block;
}

.search_box .list ul li h3 {
    font-size: 20px;
}

.search_box .list ul li h3 a {
    color: #333;
    display: block;
    margin-top: 15px;
    line-height: 30px;
}

.search_box .list ul li h3 a:hover {
    text-decoration: underline;
}

.search_box .list ul li h3 a span {
    color: #e16831;
}

.search_box .list ul li p {
    font-size: 16px;
    margin-top: 16px;
    line-height: 24px;
}

.search_box .list ul li p a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search_box .list ul li p a span {
    color: #e16831;
}

.content_id {
    display: none;
}


.had_time {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.m_xl dl {
    position: relative;
    z-index: 77;
    width: 230px;
}

.m_xl dl dt {
    appearance: none;
    -webkit-appearance: none;
    background: url('../images/xiala.png') no-repeat 90% center;
    outline: none;
    border: 1px solid #dedede;
    text-align: left;
    position: relative;
    z-index: 3;
    cursor: pointer;
    font-size: 18px;
    height: 50px;
    line-height: 50px;
    width: 100%;
    border-radius: 30px;
    padding: 0px 30px;
    font-size: 16px;
}

.m_xl dl dd {
    display: none;
    left: 0px;
    background: #fff;
    position: absolute;
    left: 0px;
    top: 55px;
    width: 100%;
    z-index: 0;
    box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.1);
    text-align: left;
    border-radius: 5px;
}

.m_xl dl dd a {
    display: block;
    border-bottom: 1px solid #eaeaea;
    font-size: 16px;
    padding: 10px 20px;
}

.m_xl dl dd a:hover {
    background: #dd692f;
    color: #fff;
}